mirror of
https://github.com/digitalocean/nginxconfig.io.git
synced 2025-09-16 00:21:54 +08:00
#85773 setup section tabs order fixed
This commit is contained in:
@@ -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,
|
||||
];
|
||||
|
Reference in New Issue
Block a user