Fix Select component not reacting to changed list (#2885)
* Fix Select component not reacting to changed list Fixes #2882. * Add msys to path on Windows in VSC settings
This commit is contained in:
parent
6f3550464d
commit
c11e40b11b
@ -35,5 +35,8 @@
|
||||
"qt/bundle/PyOxidizer": true
|
||||
},
|
||||
"rust-analyzer.cargo.buildScripts.enable": true,
|
||||
"python.analysis.typeCheckingMode": "off"
|
||||
"python.analysis.typeCheckingMode": "off",
|
||||
"terminal.integrated.env.windows": {
|
||||
"PATH": "c:\\msys64\\usr\\bin;${env:Path}"
|
||||
}
|
||||
}
|
||||
|
@ -10,6 +10,11 @@
|
||||
],
|
||||
"windows": {
|
||||
"command": "bash",
|
||||
"options": {
|
||||
"env": {
|
||||
"PATH": "c:\\msys64\\usr\\bin;${env:Path}"
|
||||
}
|
||||
},
|
||||
"args": [
|
||||
"ninja",
|
||||
"pylib",
|
||||
|
@ -37,7 +37,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
content: item as unknown as C,
|
||||
};
|
||||
};
|
||||
const parsed = list
|
||||
$: parsed = list
|
||||
.map(parser)
|
||||
.map(({ content, value: initialValue, disabled = false }, i) => {
|
||||
if ((initialValue === undefined && i === value) || initialValue === value) {
|
||||
|
Loading…
Reference in New Issue
Block a user