#85773 setup section tabs order fixed

This commit is contained in:
Valery Kovalev 2021-05-04 14:57:03 +03:00
parent 18d775edd4
commit 942029d108
2 changed files with 13 additions and 6 deletions

View File

@ -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',

View File

@ -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,
];