mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-19 15:01:06 +08:00
fix(actions-core): Changed param type check in DisplayMessage action.
This commit is contained in:
parent
578be12da8
commit
3d85e26ac5
@ -24,7 +24,7 @@ function DisplayMessage({ methods: { displayMessage }, params }) {
|
||||
)}".`
|
||||
);
|
||||
}
|
||||
if (type.isNull(params) || type.isUndefined(params)) {
|
||||
if (type.isNone(params)) {
|
||||
displayMessage({ content: 'Success' });
|
||||
}
|
||||
if (type.isObject(params)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user