#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 ClipboardJS from 'clipboard';
|
||||
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 {
|
||||
name: 'Setup',
|
||||
|
|
|
@ -24,7 +24,14 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||
THE SOFTWARE.
|
||||
*/
|
||||
|
||||
export { default as Download } from './download';
|
||||
export { default as SSL } from './ssl';
|
||||
export { default as Certbot } from './certbot';
|
||||
export { default as GoLive } from './go_live';
|
||||
import Download from './download';
|
||||
import SSL from './ssl';
|
||||
import Certbot from './certbot';
|
||||
import GoLive from './go_live';
|
||||
|
||||
export default [
|
||||
Download,
|
||||
SSL,
|
||||
Certbot,
|
||||
GoLive,
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue