Skip to content

Commit

Permalink
Release 11.1.2 (#378)
Browse files Browse the repository at this point in the history
## What's changed

- chore(deps-dev): bump ruff from 0.4.8 to 0.4.10
(#372)
- chore(deps): bump pydantic from 1.10.16 to 1.10.17
(#373)
- chore(deps): update sqlalchemy requirement from <=1.4.49,>=1.4.40 to
>=1.4.40,<=1.4.52 (#374)
- chore(deps): bump openpyxl from 3.1.3 to 3.1.4
(#375)
- fix: use id instead of name for selected items
(#377)
  • Loading branch information
puehringer authored Jun 27, 2024
2 parents 3f3725e + f62b596 commit facd63b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "visyn_core",
"description": "Core repository for datavisyn applications.",
"version": "11.1.1",
"version": "11.1.2",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ alembic==1.13.1
cachetools==5.3.3
fastapi==0.111.0
json-cfg==0.4.2
openpyxl==3.1.3
openpyxl==3.1.4
opentelemetry-api==1.25.0
opentelemetry-exporter-otlp==1.25.0
opentelemetry-exporter-prometheus==0.46b0
Expand All @@ -16,13 +16,13 @@ opentelemetry-instrumentation-system-metrics==0.46b0
opentelemetry-sdk==1.25.0
psycopg==3.1.19
psycopg2==2.9.9
pydantic==1.10.16
pydantic==1.10.17
pyjwt[crypto]==2.8.0
pytest-postgresql==6.0.0
python-dateutil==2.9.0.post0
requests==2.32.3
sentry-sdk~=2.6.0
SQLAlchemy>=1.4.40,<=1.4.49
SQLAlchemy>=1.4.40,<=1.4.52
starlette-context==0.3.6
uvicorn[standard]==0.30.1
# Extras from fastapi[all], which we can't install because it requires pydantic v2: https://github.com/tiangolo/fastapi/blob/master/pyproject.toml#L79-L103
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ black~=24.4.2
pyright==1.1.366
pytest-runner~=6.0.1
pytest~=8.2.2
ruff==0.4.8
ruff==0.4.10
6 changes: 3 additions & 3 deletions src/vis/sidebar/SingleSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function SingleSelect({
});

const options = filteredColumns.map((item) => (
<Combobox.Option value={item.info.name} key={item.info.id} active={item.info.id === currentSelected?.id}>
<Combobox.Option value={item.info.id} key={item.info.id} active={item.info.id === currentSelected?.id}>
<Tooltip
label={
<Stack gap={0}>
Expand Down Expand Up @@ -71,8 +71,8 @@ export function SingleSelect({
<Combobox
store={combobox}
withinPortal
onOptionSubmit={(val) => {
callback(filteredColumns.find((c) => c.info.name === val)?.info);
onOptionSubmit={(id) => {
callback(filteredColumns.find((c) => c.info.id === id)?.info);
combobox.closeDropdown();
}}
>
Expand Down

0 comments on commit facd63b

Please sign in to comment.