We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ee193 commit 657f043Copy full SHA for 657f043
src/BootstrapBlazor/Components/Message/Message.razor.js
@@ -16,12 +16,12 @@ export function show(id, msgId) {
16
17
let msgItem = msg.items.find(i => i.el.id === msgId)
18
if (msgItem === void 0) {
19
- msgitem = { el, animationId: null }
+ msgItem = { el, animationId: null }
20
msg.items.push(msgItem)
21
}
22
23
- if (msgitem.animationId) {
24
- cancelAnimationFrame(msgitem.animationId);
+ if (msgItem.animationId) {
+ cancelAnimationFrame(msgItem.animationId);
25
26
27
const autoHide = el.getAttribute('data-bb-autohide') === 'true';
0 commit comments