Skip to content

Commit

Permalink
v0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kholid060 authored Jan 25, 2022
2 parents eff78da + e37f033 commit aece9ef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "automa",
"version": "0.16.0",
"version": "0.16.1",
"description": "An extension for automating your browser by connecting blocks",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/newtab/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</main>
<ui-dialog />
<div
v-if="false"
v-if="isUpdated"
class="p-4 shadow-2xl z-50 fixed bottom-8 left-1/2 -translate-x-1/2 rounded-lg bg-accent text-white flex items-center"
>
<v-remixicon name="riInformationLine" class="mr-3" />
Expand Down
4 changes: 2 additions & 2 deletions src/utils/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export function convert2DArrayToArrayObj(values) {
}

currentColumn[key] = values[columnIndex][rowIndex];

result.push(currentColumn);
}

result.push(currentColumn);
}

return result;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ export const tasks = {
outputs: 1,
allowedInputs: true,
maxConnection: 1,
refDataKeys: ['selector'],
refDataKeys: ['selector', 'filePaths'],
data: {
findBy: 'cssSelector',
selector: '',
Expand Down

0 comments on commit aece9ef

Please sign in to comment.