0
0
Fork 0

Show claim filter panel

This commit is contained in:
Joan Sanchez 2023-03-02 09:23:08 +01:00
parent 79d6b2139c
commit c09437f00e
1 changed files with 2 additions and 11 deletions

View File

@ -17,17 +17,8 @@ const router = useRouter();
const quasar = useQuasar();
const { t } = useI18n();
onMounted(() => {
if (!stateStore.rightDrawer) {
stateStore.toggleRightDrawer();
}
});
onUnmounted(() => {
if (stateStore.rightDrawer) {
stateStore.toggleRightDrawer();
}
});
onMounted(() => (stateStore.rightDrawer = true));
onUnmounted(() => (stateStore.rightDrawer = false));
function stateColor(code) {
if (code === 'pending') return 'green';