From b6bb53d4e8efca3cf0bbf0eae99a72dc62cf1080 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 23 Aug 2026 10:31:23 -0400 Subject: [PATCH 1/2] fix(tags): show more than five tags in settings Fixes #63503 Signed-off-by: Josh --- apps/systemtags/src/components/SystemTagForm.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/systemtags/src/components/SystemTagForm.vue b/apps/systemtags/src/components/SystemTagForm.vue index 24bf5c872bf8f..49d6d63feb19c 100644 --- a/apps/systemtags/src/components/SystemTagForm.vue +++ b/apps/systemtags/src/components/SystemTagForm.vue @@ -235,6 +235,7 @@ function getTagLevel(userVisible: boolean, userAssignable: boolean): TagLevel { :placeholder="t('systemtags', 'Collaborative tags …')" :fetchTags="false" :options="tags" + :limit="null" :multiple="false" labelOutside @update:modelValue="onSelectTag"> From d521f7cbe0a249c486a06f912e0f25953ecd0803 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 23 Aug 2026 10:41:59 -0400 Subject: [PATCH 2/2] fix(tags): resolve selected tag in settings The "Search for a tag to edit" field should show the selected tag as the selected option. It fails to do so because the object is passed instead of just the id. Signed-off-by: Josh --- apps/systemtags/src/components/SystemTagForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/systemtags/src/components/SystemTagForm.vue b/apps/systemtags/src/components/SystemTagForm.vue index 49d6d63feb19c..8bc2c75505bca 100644 --- a/apps/systemtags/src/components/SystemTagForm.vue +++ b/apps/systemtags/src/components/SystemTagForm.vue @@ -230,7 +230,7 @@ function getTagLevel(userVisible: boolean, userAssignable: boolean): TagLevel {