fix: create button only show in first tab only

This commit is contained in:
Methapon Metanipat 2024-11-08 14:34:13 +07:00
parent b87e15301f
commit 1bbf521740

View file

@ -578,12 +578,12 @@ async function storeDataLocal(id: string) {
class="col surface-2 flex items-center justify-center"
>
<NoData
v-if="pageState.inputSearch"
v-if="pageState.inputSearch || pageState.currentTab !== 'Issued'"
:not-found="!!pageState.inputSearch"
/>
<CreateButton
v-if="!pageState.inputSearch"
v-if="!pageState.inputSearch && pageState.currentTab === 'Issued'"
@click="triggerAddQuotationDialog"
label="general.add"
:i18n-args="{ text: $t('quotation.title') }"