diff --git a/src/components/ProfileBanner.vue b/src/components/ProfileBanner.vue index d58ee26e..a3dc214d 100644 --- a/src/components/ProfileBanner.vue +++ b/src/components/ProfileBanner.vue @@ -81,38 +81,47 @@ const showOverlay = ref(false); @mouseleave="showOverlay = false" @click.stop="$emit('view')" > - - - +
+ + + +
{ + if (i.status === 'INACTIVE') { + return false; + } + return true; + }) + .forEach((i) => { + const productExists = selectProduct.value.some( + (product) => product.id === i.id, + ); + if (!productExists) { + selectProduct.value.push({ ...i }); + } + }); +} + async function fetchListOfOptionBranch() { const uid = getUserId(); const role = getRole(); @@ -3799,47 +3817,61 @@ watch( } " > -
-
+
+
- +