refactor: change icon btn

This commit is contained in:
Net 2024-08-19 13:04:15 +07:00
parent c3b707c945
commit f2cb7fcd5a

View file

@ -484,15 +484,11 @@ watch([customerId, inputSearch, currentStatus], async () => {
}
"
/>
<q-btn
class="btn-arrow-right"
:class="{ active: currentBtnOpen[props.rowIndex] }"
icon="mdi-arrow-right-bold-outline"
size="sm"
dense
round
flat
@click="
@click.stop="
async () => {
const res = await fetchBranchEmployee(props.row.id);
@ -503,7 +499,19 @@ watch([customerId, inputSearch, currentStatus], async () => {
}
}
"
/>
>
<div class="row items-center">
<q-icon name="mdi-account-group-outline" />
<q-icon
class="btn-arrow-right"
:class="{
active: currentBtnOpen[props.rowIndex],
}"
size="xs"
name="mdi-chevron-right"
/>
</div>
</q-btn>
</q-td>
</q-tr>