Skip to content

Commit

Permalink
Changed the spacing/width of VX reports runs selection (#7094)
Browse files Browse the repository at this point in the history
* changed the spacing/width of VX reports runs selection

* udpate changelog
  • Loading branch information
hotzenklotz authored May 23, 2023
1 parent 4b2e928 commit a7bbbef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
- The minimum length of layer names in datasets was set from 3 to 1, enabling single-character names for layers. [#7064](https://github.com/scalableminds/webknossos/pull/7064)
- All dataset managers are now allowed to see all voxelytics workflow reports created in their organization. Previously, only admins could see all workflow reports, with other users seeing only their own. [#7080](https://github.com/scalableminds/webknossos/pull/7080)
- Improved performance for large meshes, especially when loaded from a precomputed oversegmentation mesh file. [#7077](https://github.com/scalableminds/webknossos/pull/7077)
- Slight increased the spacing and width of some VX reports elements. [#7094](https://github.com/scalableminds/webknossos/pull/7094)

### Fixed
- Fixed that changing a segment color could lead to a crash. [#7000](https://github.com/scalableminds/webknossos/pull/7000)
Expand Down
4 changes: 2 additions & 2 deletions frontend/javascripts/admin/voxelytics/task_list_view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ export default function TaskListView({
<Search
placeholder="Filter workflows"
onSearch={handleOnSearch}
style={{ width: 350 }}
style={{ minWidth: 150 }}
allowClear
/>
<div style={{ flex: 1 }} />
Expand All @@ -620,7 +620,7 @@ export default function TaskListView({
: addUrlParam(history.location, "runId", value),
)
}
style={{ maxWidth: 300 }}
style={{ maxWidth: "70%" }}
>
<Select.Option value="">Consolidated</Select.Option>
{report.runs.map((run) => (
Expand Down

0 comments on commit a7bbbef

Please sign in to comment.