#85773 global section tabs order fixed
This commit is contained in:
parent
a20f4e7d79
commit
18d775edd4
|
@ -59,9 +59,9 @@ THE SOFTWARE.
|
||||||
<script>
|
<script>
|
||||||
import analytics from '../util/analytics';
|
import analytics from '../util/analytics';
|
||||||
import isChanged from '../util/is_changed';
|
import isChanged from '../util/is_changed';
|
||||||
import * as Sections from './global_sections';
|
import Sections from './global_sections';
|
||||||
|
|
||||||
const tabs = Object.values(Sections);
|
const tabs = Sections;
|
||||||
const delegated = tabs.reduce((prev, tab) => {
|
const delegated = tabs.reduce((prev, tab) => {
|
||||||
prev[tab.key] = tab.delegated;
|
prev[tab.key] = tab.delegated;
|
||||||
return prev;
|
return prev;
|
||||||
|
|
|
@ -24,12 +24,24 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export { default as HTTPS } from './https';
|
import HTTPS from './https';
|
||||||
export { default as Security } from './security';
|
import Security from './security';
|
||||||
export { default as Python } from './python';
|
import Python from './python';
|
||||||
export { default as ReverseProxy } from './reverse_proxy';
|
import ReverseProxy from './reverse_proxy';
|
||||||
export { default as Performance } from './performance';
|
import Performance from './performance';
|
||||||
export { default as Logging } from './logging';
|
import Logging from './logging';
|
||||||
export { default as NGINX } from './nginx';
|
import NGINX from './nginx';
|
||||||
export { default as Docker } from './docker';
|
import Docker from './docker';
|
||||||
export { default as Tools } from './tools';
|
import Tools from './tools';
|
||||||
|
|
||||||
|
export default [
|
||||||
|
HTTPS,
|
||||||
|
Security,
|
||||||
|
Python,
|
||||||
|
ReverseProxy,
|
||||||
|
Performance,
|
||||||
|
Logging,
|
||||||
|
NGINX,
|
||||||
|
Docker,
|
||||||
|
Tools,
|
||||||
|
];
|
||||||
|
|
Loading…
Reference in New Issue