#85773 setup section tabs order fixed
This commit is contained in:
parent
18d775edd4
commit
942029d108
|
@ -67,9 +67,9 @@ THE SOFTWARE.
|
||||||
import Tar from 'memory-tar-create';
|
import Tar from 'memory-tar-create';
|
||||||
import ClipboardJS from 'clipboard';
|
import ClipboardJS from 'clipboard';
|
||||||
import analytics from '../util/analytics';
|
import analytics from '../util/analytics';
|
||||||
import * as Sections from './setup_sections';
|
import Sections from './setup_sections';
|
||||||
|
|
||||||
const tabs = Object.values(Sections);
|
const tabs = Sections;
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Setup',
|
name: 'Setup',
|
||||||
|
|
|
@ -24,7 +24,14 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export { default as Download } from './download';
|
import Download from './download';
|
||||||
export { default as SSL } from './ssl';
|
import SSL from './ssl';
|
||||||
export { default as Certbot } from './certbot';
|
import Certbot from './certbot';
|
||||||
export { default as GoLive } from './go_live';
|
import GoLive from './go_live';
|
||||||
|
|
||||||
|
export default [
|
||||||
|
Download,
|
||||||
|
SSL,
|
||||||
|
Certbot,
|
||||||
|
GoLive,
|
||||||
|
];
|
||||||
|
|
Loading…
Reference in New Issue