react-notification-system icon indicating copy to clipboard operation
react-notification-system copied to clipboard

Level is not working in editNotification

Open smismailalam opened this issue 5 years ago • 0 comments

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' });

smismailalam avatar Oct 21 '20 15:10 smismailalam