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 quasar = useQuasar();
const { t } = useI18n(); const { t } = useI18n();
onMounted(() => { onMounted(() => (stateStore.rightDrawer = true));
if (!stateStore.rightDrawer) { onUnmounted(() => (stateStore.rightDrawer = false));
stateStore.toggleRightDrawer();
}
});
onUnmounted(() => {
if (stateStore.rightDrawer) {
stateStore.toggleRightDrawer();
}
});
function stateColor(code) { function stateColor(code) {
if (code === 'pending') return 'green'; if (code === 'pending') return 'green';