diff --git a/esp/src/src/ESPUtil.ts b/esp/src/src/ESPUtil.ts index 8c8a94e4abc..43cf058435d 100644 --- a/esp/src/src/ESPUtil.ts +++ b/esp/src/src/ESPUtil.ts @@ -314,10 +314,10 @@ export function goToPageUserPreference(gridName, key) { export const MonitorLockClick = dojo.declare([Evented], { unlocked() { - this.emit("Unlocked", {}); + this.emit("unlocked", {}); }, locked() { - this.emit("Locked", {}); + this.emit("locked", {}); } });