Skip to content

Commit

Permalink
disable react/jsx-props-no-spreading eslint rule
Browse files Browse the repository at this point in the history
Signed-off-by: andy.lee <andy.lee@suse.com>
  • Loading branch information
a110605 committed Jul 9, 2024
1 parent dcf61ba commit b175eac
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"react/jsx-first-prop-new-line": 0,
"import/prefer-default-export": 0,
"react/jsx-filename-extension": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-curly-brace-presence": 0,
"import/first": 0,
"consistent-return": 0,
Expand Down
1 change: 0 additions & 1 deletion src/routes/volume/detail/CreateRecurringJob.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ const modal = ({
const nameGeneration = getFieldValue('name') ? getFieldValue('name') : `c-${Math.random().toString(36).substr(2, 6)}`
const disableAddDefaultGroup = getFieldValue('keys').some((k) => getFieldValue('groups')[k.index] === 'default')


const handleParameterChange = (value) => {
// clear parametersValue if parametersKey is cleared
if (value === undefined) {
Expand Down

0 comments on commit b175eac

Please sign in to comment.