Refactor MasterDetailMntC.vue for improved readability and consistency

This commit is contained in:
skytek_xinliang
2026-03-30 09:18:55 +08:00
parent 7591ecd062
commit 16b58fbf7a
66 changed files with 2071 additions and 777 deletions
+1 -2
View File
@@ -17,7 +17,7 @@ export type HttpToastDetail = {
let lastKey = ''
let lastAt = 0
export function emitHttpToast (detail: HttpToastDetail) {
export function emitHttpToast(detail: HttpToastDetail) {
const now = Date.now()
const key = detail.dedupeKey ?? `${detail.level}:${detail.message}`
@@ -28,4 +28,3 @@ export function emitHttpToast (detail: HttpToastDetail) {
window.dispatchEvent(new CustomEvent<HttpToastDetail>(HTTP_TOAST_EVENT, { detail }))
}