summaryrefslogtreecommitdiff
path: root/Pages
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-02-01 00:47:11 +1100
committerJake Mannens <jake@asger.xyz>2026-02-01 01:50:37 +1100
commit7447a54c13631b5ecf7b4e10cef2cbf52a357042 (patch)
tree9d441e7892649230490bd8e0000123aa16a7509b /Pages
parent9a75d6fffe8950eba67595e5457dfe6d6a4b0eab (diff)
tmp
Diffstat (limited to 'Pages')
-rw-r--r--Pages/TagDefinitions.razor8
1 files changed, 4 insertions, 4 deletions
diff --git a/Pages/TagDefinitions.razor b/Pages/TagDefinitions.razor
index 3840c6d..e2e4df6 100644
--- a/Pages/TagDefinitions.razor
+++ b/Pages/TagDefinitions.razor
@@ -140,10 +140,10 @@
}
private void PromptTagCreate() {
- string? @namespace = tabContainer.ActivePane?.Title;
- if(@namespace == "Default")
- @namespace = null;
- tagEditDialog.Show(@namespace);
+ string? ns = tabContainer.ActivePane?.Title;
+ if(ns == "Default")
+ ns = null;
+ tagEditDialog.Show(ns);
}
private void TagUpdated(object? sender, EventArgs e) {