Fixed #2507 - The default severity of the InlineMessage is info, but in the code the default severity is 'error'.

This commit is contained in:
Tuğçe Küçükoğlu 2022-05-24 11:10:58 +03:00
parent cdcdd05ddb
commit 5a8ef46c42
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ const InlineMessageProps = [
{
name: "severity",
type: "string",
default: "info",
default: "error",
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
}
];