mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-21 16:44:02 +02:00
Merge branch 'master' into bugfix/5773_prevent_overlapping
This commit is contained in:
commit
ed8da8b55a
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
displayText() {
|
||||
if (this.item.value === "" || this.item.value === undefined) {
|
||||
if (this.item.value === "" || this.item.value === undefined || this.item.value === null) {
|
||||
return this.item.name;
|
||||
} else {
|
||||
return `${this.item.name}: ${this.item.value}`;
|
||||
|
|
Loading…
Add table
Reference in a new issue