4802- Added searchbar & filter panel #39

Merged
joan merged 35 commits from 4802-searchbar into dev 2023-03-02 08:53:44 +00:00
1 changed files with 2 additions and 11 deletions
Showing only changes of commit c09437f00e - Show all commits

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';