File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
# .env.dev
2
2
NODE_ENV = dev
3
3
# VUE_APP_DEV_IP=demo.casaos.io
4
- VUE_APP_DEV_IP = 10.0.0.111
4
+ VUE_APP_DEV_IP = 10.0.0.77
5
5
# VUE_APP_DEV_IP=10.147.20.1
6
6
# VUE_APP_DEV_IP=192.168.2.15
7
7
# VUE_APP_DEV_IP=192.168.2.219
Original file line number Diff line number Diff line change 75
75
</b-button >
76
76
<template v-if =" ! isLinkApp && ! isV1App " >
77
77
<hr class =" dropdown-divider" />
78
- <b-button expanded type =" is-text" @click =" restartApp" :disabled =" isRestarting | isStarting" >
78
+ <b-button expanded type =" is-text" @click =" restartApp" :disabled =" isRestarting || isStarting" >
79
79
{{ isRestarting ? $t("Restarting...") : $t("Restart") }}
80
80
</b-button >
81
81
<b-button expanded type =" is-text" @click =" toggle(item)" :disabled =" isStarting || isRestarting" >
Original file line number Diff line number Diff line change @@ -457,13 +457,11 @@ export default {
457
457
const newSortList = existingList .concat (futureList);
458
458
459
459
// then sort.
460
- console .log (casaAppList)
461
460
const sortedAppList = casaAppList .sort ((obj1 , obj2 ) => {
462
461
return newSortList .indexOf (obj1 .name ) - newSortList .indexOf (obj2 .name );
463
462
});
464
463
465
464
const sortedList = sortedAppList .map ((obj ) => obj .name );
466
- console .log (" sortedList" , sortedList);
467
465
if (this .user .is_admin ) {
468
466
this .appList = sortedAppList;
469
467
} else {
You can’t perform that action at this time.
0 commit comments