mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-31 02:42:34 +02:00
🐞 fix for EditMonitor value binding
This commit is contained in:
parent
3d5be4c07f
commit
77b83ddc44
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@
|
|||
|
||||
<div class="mb-3">
|
||||
<label for="interval" class="form-label">Heartbeat Interval (Every {{ monitor.interval }} seconds)</label>
|
||||
<input type="number" class="form-control" id="interval" v-model="monitor.interval" required min="1" step="1" value="20">
|
||||
<input type="number" class="form-control" id="interval" v-model="monitor.interval" required min="1" step="1">
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
@ -118,7 +118,7 @@ export default {
|
|||
type: "http",
|
||||
name: "",
|
||||
url: "https://",
|
||||
interval: 60,
|
||||
interval: 20,
|
||||
notificationIDList: {},
|
||||
}
|
||||
} else if (this.isEdit) {
|
||||
|
|
Loading…
Add table
Reference in a new issue