Fix a couple errors

This commit is contained in:
Dragory 2020-04-21 19:03:32 +03:00
parent 37704069f1
commit ee3978797b
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -466,7 +466,7 @@ export class ModActionsPlugin extends ZeppelinPlugin<TConfigSchema> {
} catch (e) { } catch (e) {
return { return {
status: "failed", status: "failed",
error: e.getMessage(), error: e.message,
}; };
} }
@ -525,7 +525,7 @@ export class ModActionsPlugin extends ZeppelinPlugin<TConfigSchema> {
} catch (e) { } catch (e) {
return { return {
status: "failed", status: "failed",
error: e.getMessage(), error: e.message,
}; };
} }