From b046ad08267e9c1e31fdd0f7199978743021779f Mon Sep 17 00:00:00 2001 From: Brian DiChiara Date: Tue, 24 Sep 2024 12:31:43 -0500 Subject: [PATCH] [#31418] Remove "primary" category identifiers --- resources/js/components/Category/Editable.vue | 5 ----- resources/js/components/Concept/Default.vue | 2 -- 2 files changed, 7 deletions(-) diff --git a/resources/js/components/Category/Editable.vue b/resources/js/components/Category/Editable.vue index 7b7c10e..8a85a85 100644 --- a/resources/js/components/Category/Editable.vue +++ b/resources/js/components/Category/Editable.vue @@ -4,7 +4,6 @@
{{ selectedValue }}
@@ -78,10 +77,6 @@ export default { type: Number, default: null, }, - isPrimary: { - type: Boolean, - default: false, - }, categoryValue: { type: String, default: null, diff --git a/resources/js/components/Concept/Default.vue b/resources/js/components/Concept/Default.vue index 8705dd8..c4cb515 100644 --- a/resources/js/components/Concept/Default.vue +++ b/resources/js/components/Concept/Default.vue @@ -131,7 +131,6 @@

{{ cat.value }} @@ -140,7 +139,6 @@ :category-id="cat.id" :category-value="cat.value" :category-index="index" - :is-primary="0 === index" :selected-categories="selectedCategories" @save-category="saveCategory" @delete-category="deleteCategory"