Skip to content

Commit

Permalink
Merge branch 'staging' into 733-dont-use-index-for-keys-testcases
Browse files Browse the repository at this point in the history
Merging recent updates into branch.
  • Loading branch information
mumbler6 committed Jun 12, 2024
2 parents f5676cd + e4812ae commit fa245af
Show file tree
Hide file tree
Showing 4 changed files with 478 additions and 47 deletions.
2 changes: 1 addition & 1 deletion config/jest/babelTransform.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const hasJsxRuntime = (() => {
}
})();

module.exports = babelJest.default.createTransformer({
module.exports = babelJest.createTransformer({
presets: [
[
require.resolve('babel-preset-react-app'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
Expand Down
4 changes: 4 additions & 0 deletions src/screens/Glossary/components/GlossaryTable/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,12 @@ const GlossaryTable = props => {
DOMAIN
</button>
</th> */}

<th>LIKE</th>
{ /* Not sure why this triggers the input label accessibility role, might be a library bug since it's just a space */}
{ /* eslint-disable jsx-a11y/control-has-associated-label */ }
<th>&nbsp;</th>
{ /* eslint-enable jsx-a11y/control-has-associated-label */ }
</tr>
</thead>
<tbody>
Expand Down
Loading

0 comments on commit fa245af

Please sign in to comment.