Fix linting issues
This commit is contained in:
parent
60e7824ff0
commit
1062e629c5
|
@ -23,12 +23,10 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DockerHostDialog from "../../components/DockerHostDialog.vue";
|
import DockerHostDialog from "../../components/DockerHostDialog.vue";
|
||||||
import ActionInput from "../ActionInput.vue";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
DockerHostDialog,
|
DockerHostDialog,
|
||||||
ActionInput,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
|
@ -47,4 +45,4 @@ export default {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -541,7 +541,7 @@ export default {
|
||||||
"Docker Container": "Docker Container",
|
"Docker Container": "Docker Container",
|
||||||
"Container Name / ID": "Container Name / ID",
|
"Container Name / ID": "Container Name / ID",
|
||||||
"Docker Host": "Docker Host",
|
"Docker Host": "Docker Host",
|
||||||
"Docker Hosts": "Docker Hosts"
|
"Docker Hosts": "Docker Hosts",
|
||||||
"ntfy Topic": "ntfy Topic",
|
"ntfy Topic": "ntfy Topic",
|
||||||
"Domain": "Domain",
|
"Domain": "Domain",
|
||||||
"Workstation": "Workstation",
|
"Workstation": "Workstation",
|
||||||
|
|
|
@ -159,7 +159,7 @@
|
||||||
{{ $t("Not available, please setup.") }}
|
{{ $t("Not available, please setup.") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="mb-3" v-else>
|
<div v-else class="mb-3">
|
||||||
<label for="docker-host" class="form-label">{{ $t("Docker Host") }}</label>
|
<label for="docker-host" class="form-label">{{ $t("Docker Host") }}</label>
|
||||||
<select id="docket-host" v-model="monitor.docker_host" class="form-select">
|
<select id="docket-host" v-model="monitor.docker_host" class="form-select">
|
||||||
<option v-for="host in $root.dockerHostList" :key="host.id" :value="host.id">{{ host.name }}</option>
|
<option v-for="host in $root.dockerHostList" :key="host.id" :value="host.id">{{ host.name }}</option>
|
||||||
|
|
Loading…
Reference in New Issue