From b9c5fc0bd9cc23bce7b09eae7af962fd087b35cf Mon Sep 17 00:00:00 2001
From: Will Sheldon <114631109+wssheldon@users.noreply.github.com>
Date: Mon, 26 Feb 2024 13:02:01 -0800
Subject: [PATCH] Add a Required column to the TagType table (#4448)
---
src/dispatch/static/dispatch/src/tag_type/Table.vue | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/dispatch/static/dispatch/src/tag_type/Table.vue b/src/dispatch/static/dispatch/src/tag_type/Table.vue
index 3bc836edd4c7..ba3e0ff4a946 100644
--- a/src/dispatch/static/dispatch/src/tag_type/Table.vue
+++ b/src/dispatch/static/dispatch/src/tag_type/Table.vue
@@ -50,6 +50,9 @@
{{ combine(item) }}
+
+
+
@@ -88,6 +91,7 @@ export default {
{ title: "Name", value: "name", sortable: true },
{ title: "Description", value: "description", sortable: false },
{ title: "Discoverability", value: "discoverability", sortable: false },
+ { title: "Required", value: "required", sortable: false },
{ title: "Exclusive", value: "exclusive", sortable: false },
{ title: "", key: "data-table-actions", sortable: false, align: "end" },
],