Skip to content

Commit

Permalink
Merge pull request #1250 from complexdatacollective/fix/max-nodes
Browse files Browse the repository at this point in the history
fix/ action button still clickable after max reached
  • Loading branch information
jthrilly authored Oct 4, 2023
2 parents 620359f + 05dd205 commit 717c15d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@babel/preset-react": "7.10.1",
"@codaco/eslint-plugin-spellcheck": "0.0.14",
"@codaco/shared-consts": "~0.0.1-alpha.3",
"@codaco/ui": "~5.8.3",
"@codaco/ui": "~5.8.5",
"@electron/notarize": "~1.2.3",
"@faker-js/faker": "~6.0.0-alpha.5",
"@zippytech/sorty": "^2.0.0",
Expand Down Expand Up @@ -315,4 +315,4 @@
"cordova-plugin-ionic-keyboard": {}
}
}
}
}
2 changes: 1 addition & 1 deletion src/containers/QuickNodeForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const QuickAddForm = ({
>
<ActionButton
disabled={disabled}
onClick={() => !disabled && setShowForm(true)}
onClick={() => setShowForm(true)}
icon={icon}
title={`Add ${nodeType}...`}
/>
Expand Down

0 comments on commit 717c15d

Please sign in to comment.