Fix reset filters bug

This commit is contained in:
marzban-dev
2026-04-23 15:25:53 +03:30
parent 361135a972
commit a01fd6f3d8
@@ -94,8 +94,8 @@ const paginationData = computed(() => {
// methods
const clearFilters = () => {
sort.value = "";
status.value = "";
sort.value = undefined;
status.value = undefined;
};
</script>