mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-19 12:44:27 -05:00
Fix getUniqueDefaultName
This commit is contained in:
parent
de7df46aa8
commit
7da48b27a5
@ -267,17 +267,16 @@ export default {
|
|||||||
* @return {string}
|
* @return {string}
|
||||||
*/
|
*/
|
||||||
getUniqueDefaultName(notificationKey) {
|
getUniqueDefaultName(notificationKey) {
|
||||||
/*
|
|
||||||
let index = 1;
|
let index = 1;
|
||||||
let name = "";
|
let name = "";
|
||||||
do {
|
do {
|
||||||
name = this.$t("defaultNotificationName", {
|
name = this.$t("defaultNotificationName", {
|
||||||
notification: this.$t(notificationKey).replace(/\(.+\)/, "").trim(),
|
notification: this.notificationNameList[notificationKey].replace(/\(.+\)/, "").trim(),
|
||||||
number: index++
|
number: index++
|
||||||
});
|
});
|
||||||
} while (this.$root.notificationList.find(it => it.name === name));
|
} while (this.$root.notificationList.find(it => it.name === name));
|
||||||
return name;*/
|
return name;
|
||||||
return "123";
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user