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 // methods
const clearFilters = () => { const clearFilters = () => {
sort.value = ""; sort.value = undefined;
status.value = ""; status.value = undefined;
}; };
</script> </script>