From 2d646312e4c369d1e836d0c33963ea0ce3f14860 Mon Sep 17 00:00:00 2001 From: Brian Tate Date: Tue, 12 Dec 2023 16:15:01 -0500 Subject: [PATCH 1/2] Fix z-index of volume control. --- ui/src/js/annotation/volume-control.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/js/annotation/volume-control.js b/ui/src/js/annotation/volume-control.js index 12e4e8c2c..6c232f9da 100644 --- a/ui/src/js/annotation/volume-control.js +++ b/ui/src/js/annotation/volume-control.js @@ -142,6 +142,7 @@ export class VolumeControl extends TatorElement { this._div.style.align = "center"; this._div.style.position = "absolute"; this._div.style.top = "-70px"; + this._div.style.zIndex = "3"; // TODO: Move this into css this._div.style.background = "#151b28"; From b9b7e9398b8856f67b4982815c6cada4ed6faa1d Mon Sep 17 00:00:00 2001 From: Brian Tate Date: Tue, 12 Dec 2023 16:23:29 -0500 Subject: [PATCH 2/2] path was being copied from old section object, but must be unique. --- ui/src/js/project-detail/project-detail.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/js/project-detail/project-detail.js b/ui/src/js/project-detail/project-detail.js index 97b2100a5..6928dd062 100644 --- a/ui/src/js/project-detail/project-detail.js +++ b/ui/src/js/project-detail/project-detail.js @@ -409,6 +409,7 @@ export class ProjectDetail extends TatorPage { }); } spec.name = newSectionDialog._input.value; + delete spec.path; // clear path to allow saved searches of saved searches if (params.has("encoded_search")) { let object_search = JSON.parse(atob(params.get("encoded_search")));