You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to have the notification color change in editNotification because level is not working in editNotification
here is my code for addNotification which is working fine
notify.addNotification({
title: "Message Request",
message: some message,
level: "info",
dismissible: "button",
autoDismiss: 60,
action: null,
});
here is my code for editNotification, level is not working
notify.editNotification(event, {
title: "Accepted",
message: "By another user",
dismissible: "none",
label: "success",
action: null,
level:'success'
});
The text was updated successfully, but these errors were encountered:
Is there a way to have the notification color change in editNotification because level is not working in editNotification
here is my code for addNotification which is working fine
notify.addNotification({
title: "Message Request",
message:
some message
,level: "info",
dismissible: "button",
autoDismiss: 60,
action: null,
});
here is my code for editNotification, level is not working
notify.editNotification(event, {
title: "Accepted",
message: "By another user",
dismissible: "none",
label: "success",
action: null,
level:'success'
});
The text was updated successfully, but these errors were encountered: