mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-18 23:34:04 +02:00
fix: Remove trailing spaces to pass linter checks
This commit is contained in:
parent
65daa037ee
commit
ffc3b07d66
3 changed files with 4 additions and 4 deletions
|
@ -199,10 +199,10 @@ export default {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Set id to null to indicate this is a new proxy (clone)
|
||||
this.id = null;
|
||||
|
||||
|
||||
this.modal.show();
|
||||
},
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<li v-for="(proxy, index) in $root.proxyList" :key="index" class="list-group-item">
|
||||
{{ proxy.host }}:{{ proxy.port }} ({{ proxy.protocol }})
|
||||
<span v-if="proxy.default === true" class="badge bg-primary ms-2">{{ $t("Default") }}</span><br>
|
||||
<a href="#" @click="$refs.proxyDialog.show(proxy.id)">{{ $t("Edit") }}</a> |
|
||||
<a href="#" @click="$refs.proxyDialog.show(proxy.id)">{{ $t("Edit") }}</a> |
|
||||
<a href="#" @click="$refs.proxyDialog.showClone(proxy.id)">{{ $t("Clone") }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
@ -842,7 +842,7 @@
|
|||
|
||||
<label class="form-check-label" :for="`proxy-${proxy.id}`">
|
||||
{{ proxy.host }}:{{ proxy.port }} ({{ proxy.protocol }})
|
||||
<a href="#" @click="$refs.proxyDialog.show(proxy.id)">{{ $t("Edit") }}</a> |
|
||||
<a href="#" @click="$refs.proxyDialog.show(proxy.id)">{{ $t("Edit") }}</a> |
|
||||
<a href="#" @click="$refs.proxyDialog.showClone(proxy.id)">{{ $t("Clone") }}</a>
|
||||
</label>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue