Skip to content

Commit

Permalink
Fix occluded login field (#5577)
Browse files Browse the repository at this point in the history
* dont render tracing view when loading fails

* update changelog

Co-authored-by: Philipp Otto <[email protected]>
  • Loading branch information
grittaweisheit and philippotto authored Jun 22, 2021
1 parent 1d26b79 commit 8f71526
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
- Fixed that the UI allowed mutating trees in the tree tab (dragging/creating/deleting trees and groups) in read-only tracings. [#5573](https://github.com/scalableminds/webknossos/pull/5573)
- Fixed "Create a new tree group for this file" setting in front-end import when a group id of 0 was used in the NML. [#5573](https://github.com/scalableminds/webknossos/pull/5573)
- Fixed a bug that caused a distortion when moving or zooming in the maximized 3d viewport. [#5550](https://github.com/scalableminds/webknossos/pull/5550)
- Fixed a bug that prevented focusing the login fields when being prompted to login after trying to view a dataset without being logged in.[#5521](https://github.com/scalableminds/webknossos/pull/5577)

### Removed
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class TracingLayoutView extends React.PureComponent<PropsWithRouter, State> {
<Layout style={{ display: "flex" }}>
<MergerModeController />
<div id={canvasAndLayoutContainerID} style={{ width: "100%", height: "100%" }}>
<TracingView />
{status !== "failedLoading" && <TracingView />}
{status === "loaded" ? (
<FlexLayoutWrapper
onLayoutChange={this.onLayoutChange}
Expand Down

0 comments on commit 8f71526

Please sign in to comment.