@@ -1,6 +1,6 @@
{
"name": "automa",
- "version": "0.4.0",
+ "version": "0.4.1",
"description": "An extension for automating your browser by connecting blocks",
"license": "MIT",
"repository": {
@@ -115,7 +115,9 @@ export default {
if (props.data) {
const data =
- typeof props.data === 'string' ? JSON.parse(props.data) : props.data;
+ typeof props.data === 'string'
+ ? JSON.parse(props.data.replace(/BlockNewTab/g, 'BlockBasic'))
+ : props.data;
editor.value.import(data);
} else {