Skip to content

Commit

Permalink
dialogToolset Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
claytoncarney committed Nov 21, 2022
1 parent e10ade4 commit dd3e3af
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -3063,7 +3063,7 @@
const dialogToolset$5 = [
{ type: 'label', text: 'Name' },
{ type: 'input', ariaLabel: 'Name' },
{ type: 'btn', id: 'save', ariaLabel: 'Save' },
{ type: 'btn', cssModifier: 'save', ariaLabel: 'Save' },
];

const lowerToolSet$b = [
Expand Down Expand Up @@ -3196,7 +3196,7 @@

const dialogToolset$4 = [
{ type: 'label', text: null },
{ type: 'btn', id: 'delete', ariaLabel: 'Delete' },
{ type: 'btn', cssModifier: 'delete', ariaLabel: 'Delete' },
];

const lowerToolSet$a = [
Expand Down Expand Up @@ -3316,7 +3316,7 @@
const dialogToolset$3 = [
{ type: 'label', text: 'Folder Name' },
{ type: 'input', ariaLabel: 'Name' },
{ type: 'btn', id: 'save', ariaLabel: 'Save' },
{ type: 'btn', cssModifier: 'save', ariaLabel: 'Save' },
];

const lowerToolSet$9 = [
Expand Down Expand Up @@ -3568,7 +3568,7 @@
const dialogToolset$1 = [
{ type: 'label', text: 'Paste Bookmark Package Here:' },
{ type: 'textarea', ariaLabel: 'Bookmark Package' },
{ type: 'btn', id: 'import', ariaLabel: 'Import' },
{ type: 'btn', cssModifier: 'import', ariaLabel: 'Import' },
];

const lowerToolSet$7 = [
Expand Down Expand Up @@ -5276,7 +5276,7 @@
const dialogToolset = [
{ type: 'label', text: 'Query' },
{ type: 'input', ariaLabel: 'Query' },
{ type: 'btn', id: 'search', ariaLabel: 'Search' },
{ type: 'btn', cssModifier: 'search', ariaLabel: 'Search' },
];

const lowerToolSet$3 = [
Expand Down
2 changes: 1 addition & 1 deletion js/View/BookmarkFolderAddView.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
const dialogToolset = [
{ type: 'label', text: 'Name' },
{ type: 'input', ariaLabel: 'Name' },
{ type: 'btn', id: 'save', ariaLabel: 'Save' },
{ type: 'btn', cssModifier: 'save', ariaLabel: 'Save' },
];

const lowerToolSet = [
Expand Down
2 changes: 1 addition & 1 deletion js/View/BookmarkFolderDeleteView.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {

const dialogToolset = [
{ type: 'label', text: null },
{ type: 'btn', id: 'delete', ariaLabel: 'Delete' },
{ type: 'btn', cssModifier: 'delete', ariaLabel: 'Delete' },
];

const lowerToolSet = [
Expand Down
2 changes: 1 addition & 1 deletion js/View/BookmarkFolderRenameView.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
const dialogToolset = [
{ type: 'label', text: 'Folder Name' },
{ type: 'input', ariaLabel: 'Name' },
{ type: 'btn', id: 'save', ariaLabel: 'Save' },
{ type: 'btn', cssModifier: 'save', ariaLabel: 'Save' },
];

const lowerToolSet = [
Expand Down
2 changes: 1 addition & 1 deletion js/View/BookmarkImportView.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
const dialogToolset = [
{ type: 'label', text: 'Paste Bookmark Package Here:' },
{ type: 'textarea', ariaLabel: 'Bookmark Package' },
{ type: 'btn', id: 'import', ariaLabel: 'Import' },
{ type: 'btn', cssModifier: 'import', ariaLabel: 'Import' },
];

const lowerToolSet = [
Expand Down
2 changes: 1 addition & 1 deletion js/View/SearchLookupView.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
const dialogToolset = [
{ type: 'label', text: 'Query' },
{ type: 'input', ariaLabel: 'Query' },
{ type: 'btn', id: 'search', ariaLabel: 'Search' },
{ type: 'btn', cssModifier: 'search', ariaLabel: 'Search' },
];

const lowerToolSet = [
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

let appCaches = [
{
name: 'core-20221117.01',
name: 'core-20221120.01',
urls: [
'/',
'/bundle.js',
Expand Down

0 comments on commit dd3e3af

Please sign in to comment.