Skip to content

Commit

Permalink
Bump the eslint group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the eslint group with 2 updates: [eslint](https://github.com/eslint/eslint) and [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y).

Updates `eslint` from 8.53.0 to 8.54.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.53.0...v8.54.0)

Updates `eslint-plugin-jsx-a11y` from 6.7.1 to 6.8.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.8.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and jelly committed Nov 21, 2023
1 parent 78809f8 commit 3522422
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion node_modules
Submodule node_modules updated 159 files
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
"esbuild-plugin-replace": "1.4.0",
"esbuild-sass-plugin": "2.16.0",
"esbuild-wasm": "0.19.6",
"eslint": "8.53.0",
"eslint": "8.54.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
Expand Down
23 changes: 13 additions & 10 deletions pkg/storaged/dialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,18 @@ export const SelectSpaces = (tag, title, options) => {
change(val.filter(v => (v != spc)));
};

const datalistcells = (
<DataListItemCells
dataListCells={[
<DataListCell key="select-space-name" className="select-space-name">
{format_size_and_text(spc.size, desc)}
</DataListCell>,
<DataListCell alignRight isFilled={false} key="select-space-details" className="select-space-details">
{block}
</DataListCell>,
]}
/>);

return (
<DataListItem key={spc.block ? spc.block.Device : spc.desc}>
<DataListItemRow>
Expand All @@ -783,16 +795,7 @@ export const SelectSpaces = (tag, title, options) => {
isChecked={selected} onChange={on_change} />
<label htmlFor={(spc.block ? spc.block.Device : spc.desc) + "-row-checkbox"}
className='data-list-row-checkbox-label'>
<DataListItemCells
dataListCells={[
<DataListCell key="select-space-name" className="select-space-name">
{format_size_and_text(spc.size, desc)}
</DataListCell>,
<DataListCell alignRight isFilled={false} key="select-space-details" className="select-space-details">
{block}
</DataListCell>,
]}
/>
{datalistcells}
</label>
</DataListItemRow>
</DataListItem>
Expand Down

0 comments on commit 3522422

Please sign in to comment.