aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-12 14:50:57 -0500
committerbobzel <zzzman@gmail.com>2023-12-12 14:50:57 -0500
commit35f4d108643d310e4e9da107a5839bb74cc6706f (patch)
tree236e5747fc6d81e73c7e6e52c162d0bd19b49afd /src
parent85c09a9e5df77ad00f3e00a2fb1e0f2e3449f97d (diff)
from last
Diffstat (limited to 'src')
-rw-r--r--src/client/util/SelectionManager.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts
index 64cced3f1..7cf0d62d0 100644
--- a/src/client/util/SelectionManager.ts
+++ b/src/client/util/SelectionManager.ts
@@ -28,7 +28,7 @@ export class SelectionManager {
@action
public static SelectSchemaViewDoc(doc: Opt<Doc>, deselectAllFirst?: boolean) {
if (deselectAllFirst) this.DeselectAll();
- else this.Instance.SelectedSchemaDocument = doc;
+ this.Instance.SelectedSchemaDocument = doc;
}
@action