diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index f7e00ea83..10c0b5e7d 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index 6786a1086..1eb6368c9 100644 Binary files a/netbox/project-static/dist/netbox.js.map and b/netbox/project-static/dist/netbox.js.map differ diff --git a/netbox/project-static/src/messages.ts b/netbox/project-static/src/messages.ts index d17541e5f..a12d63cd0 100644 --- a/netbox/project-static/src/messages.ts +++ b/netbox/project-static/src/messages.ts @@ -10,7 +10,9 @@ export function initMessages(): void { for (const element of elements) { if (element !== null) { const toast = new Toast(element); - toast.show(); + if (!toast.isShown()) { + toast.show(); + } } } }