Skip to content

Commit

Permalink
Hide labeling tool for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Sep 4, 2024
1 parent 866f132 commit 4037b42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/labeling.cy.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { newUneditableBorehole, startBoreholeEditing, stopBoreholeEditing } from "../helpers/testHelpers.js";

describe("Test labeling tool", () => {
describe.skip("Test labeling tool", () => {
it("can show labeling panel", () => {
newUneditableBorehole().as("borehole_id");
// only show in editing mode
Expand Down
2 changes: 1 addition & 1 deletion src/client/src/pages/detail/detailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DetailPage: FC = () => {
const user = useSelector((state: ReduxRootState) => state.core_user);
const location = useLocation();
const { panelPosition, panelOpen, togglePanel } = useLabelingContext();
const showLabeling = true;
const showLabeling = false;

useEffect(() => {
setEditingEnabled(borehole.data.lock !== null);
Expand Down

0 comments on commit 4037b42

Please sign in to comment.