Skip to content

Commit

Permalink
Update picker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
herzog31 committed Feb 5, 2025
1 parent 8b8ece5 commit 702a2d8
Show file tree
Hide file tree
Showing 13 changed files with 3,385 additions and 6,793 deletions.
81 changes: 81 additions & 0 deletions tools/picker/dist/index.5f28c150.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tools/picker/dist/index.5f28c150.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions tools/picker/dist/index.600815f9.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tools/picker/dist/index.600815f9.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions tools/picker/dist/index.7ff6d912.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tools/picker/dist/index.7ff6d912.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,557 changes: 0 additions & 3,557 deletions tools/picker/dist/index.8321e709.js

This file was deleted.

1 change: 0 additions & 1 deletion tools/picker/dist/index.8321e709.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions tools/picker/dist/index.96de328f.css

This file was deleted.

1 change: 0 additions & 1 deletion tools/picker/dist/index.96de328f.css.map

This file was deleted.

2 changes: 1 addition & 1 deletion tools/picker/dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>EDS Picker</title><link rel="stylesheet" href="index.96de328f.css"></head><body> <div id="app"></div> <script type="module" src="index.8321e709.js"></script> </body></html>
<!DOCTYPE html><html lang="en"><head><link rel="stylesheet" href="index.600815f9.css"><meta charset="utf-8"><title>EDS Picker</title><link rel="stylesheet" href="index.7ff6d912.css"></head><body> <div id="app"></div> <script type="module" src="index.5f28c150.js"></script> </body></html>
6,523 changes: 3,293 additions & 3,230 deletions tools/picker/package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion tools/picker/src/picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ const Picker = props => {
let items = {};
let pageInfo = {};
try {
([items, pageInfo]) = await getItems(state.folder, 1, activeConfig);
const result = await getItems(state.folder, 1, activeConfig);
items = result[0];
pageInfo = result[1];
} catch(err) {
console.error(err);
setState(state => ({
Expand Down

0 comments on commit 702a2d8

Please sign in to comment.