Skip to content

Commit 65c192c

Browse files
committed
Add sortedModes logic on index
1 parent 0b2b141 commit 65c192c

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

web/js/index.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ const app = new Vue({
9191
},
9292
connectedTime() {
9393
return '[' + this.pad(this.connected.days, 2) + ':' + this.pad(this.connected.hours, 2) + ':' + this.pad(this.connected.minutes, 2) + ':' + this.pad(this.connected.seconds, 2) + ']'
94+
},
95+
sortedModes() {
96+
const modes = [...this.config.temp.modes];
97+
return modes.sort((a, b) => (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0))
9498
}
9599
},
96100
watch: {
@@ -102,6 +106,7 @@ const app = new Vue({
102106
runLibernet() {
103107
if (!this.status) {
104108
// apply configuration
109+
if (this.config.profile === '--- Empty ---') return
105110
this.applyConfig().then(() => {
106111
// set auto start Libernet
107112
axios.post('api.php', {
@@ -159,7 +164,12 @@ const app = new Vue({
159164
axios.post('api.php', {
160165
action: action
161166
}).then((res) => {
162-
this.config.profiles = res.data.data
167+
if (res.data.data.length > 0) {
168+
this.config.profiles = res.data.data
169+
} else {
170+
this.config.profiles = ['--- Empty ---']
171+
}
172+
this.config.profile = this.config.profiles[0]
163173
})
164174
},
165175
applyConfig() {

0 commit comments

Comments
 (0)