Hi, sorry if this has been asked for previously.
It would be really useful if the JSON input field were changed to allow JSONC (JSON with comments).
Here is an example of JSONC:
{
"topic": "Optional. Can be anything",
"_uib": { // Required
// This is a pseudo ref, you don't have to actually put it in your HTML
"componentRef": "globalNotification",
// Optional.
"options": {
"title": "Notification Title", // Optional. String or HTML.
"content": "Optional. A string. Will appear second in the resulting pop-up. Can be HTML.",
"append": false, // Optional. If TRUE, new notifications are added to the END of the list instead of the start.
"autoHideDelay": 500, // Optional. If set, must be the number of milliseconds to display the notification.
// Other Toasts options may also be included, see the bootstrap-vue and bootstrap documentation for details.
}
},
"payload": "Optional. A string. Will appear first in the resulting pop-up. Can be HTML."
}