Merge branch 'staging' into parser-followup-2

This commit is contained in:
LenAnderson
2024-07-09 07:54:27 -04:00
2 changed files with 13 additions and 10 deletions

View File

@ -2032,6 +2032,9 @@ async function echoCallback(args, value) {
args.severity = null;
}
// Make sure that the value is a string
value = String(value);
const title = args.title ? args.title : undefined;
const severity = args.severity ? args.severity : 'info';