-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Dropdown multi option removed update value. #1970
Conversation
411f349
to
424ca71
Compare
components/dash-core-components/src/fragments/Dropdown.react.js
Outdated
Show resolved
Hide resolved
Yes, I thought that test and the array join was kinda weird. |
991ae06
to
381f650
Compare
381f650
to
84c0e9a
Compare
42abf07
to
a1a9d7f
Compare
Fix autoComplete typo. Co-authored-by: Ann Marie Ward <72614349+AnnMarieW@users.noreply.github.com>
a1a9d7f
to
8cc4eac
Compare
@@ -33,27 +33,27 @@ | |||
|
|||
_js_dist = [ | |||
{ | |||
"relative_package_path": 'html/{}.min.js'.format(_this_module), | |||
"relative_package_path": "html/{}.min.js".format(_this_module), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ha, we should include this file in our linting / formatting runs. If we did, the new linter would ask for this to become an f-string ;)
@@ -2,22 +2,22 @@ | |||
import json | |||
from setuptools import setup | |||
|
|||
with open('package.json') as f: | |||
with open("package.json") as f: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can delete components/*/setup.py
now, right? Also MANIFEST.in
, maybe some others too... same in dash-renderer
.
Anyway I won't make you do this now, but I'm reminded of it after seeing this file being edited.
components/dash-core-components/src/fragments/Dropdown.react.js
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job! And excellent tests 🏆
💃 after considering my comments - I think the only blocking one is about the format.black
command, the others I'll leave to your discretion.
2739ea8
to
ed5942e
Compare
Hello, sorry to comment on a closed issue, but has this fix been included in a release or is it just in the dev branch for now? I'm seeing this behavior in 2.3.1 and just wanted to check. |
You can see the fix for this in the Unreleased section of the
|
This works now. Thanks!! |
value
does not update when selected option removed fromoptions
-- but UI does update #1868value
contains a comma #1908Contributor Checklist
CHANGELOG.md