1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-02-03 13:11:34 +02:00

Final cleanup of changes to EditMonitor.vue

Reverts unintentional changes committed in: d92003e1726f0dfd3f162973d2f29064a6dbf709
This commit is contained in:
Matt Visnovsky 2024-05-07 10:02:05 -06:00
parent 2015142b00
commit 8b4b27f359
2 changed files with 10 additions and 9 deletions

View File

@ -642,3 +642,4 @@ export function intHash(str : string, length = 10) : number {
// Normalize the hash to the range [0, 10]
return (hash % length + length) % length; // Ensure the result is non-negative
}