Typo
This commit is contained in:
parent
58dfb6b28d
commit
c4ddffa03b
|
@ -127,11 +127,11 @@ THE SOFTWARE.
|
||||||
...computedFromDefaults(defaults, 'php'), // Getters & setters for the delegated data
|
...computedFromDefaults(defaults, 'php'), // Getters & setters for the delegated data
|
||||||
phpServerOptions() {
|
phpServerOptions() {
|
||||||
return Object.entries(this.$props.data.phpServer.options)
|
return Object.entries(this.$props.data.phpServer.options)
|
||||||
.map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}}` : ''}`, value: key }));
|
.map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}` : ''}`, value: key }));
|
||||||
},
|
},
|
||||||
phpBackupServerOptions() {
|
phpBackupServerOptions() {
|
||||||
return Object.entries(this.$props.data.phpBackupServer.options)
|
return Object.entries(this.$props.data.phpBackupServer.options)
|
||||||
.map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}}` : ''}`, value: key }));
|
.map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}` : ''}`, value: key }));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
Loading…
Reference in New Issue