diff --git a/src/components/list/partials/filters.vue b/src/components/list/partials/filters.vue index 47fa6f30d..b5b2691a8 100644 --- a/src/components/list/partials/filters.vue +++ b/src/components/list/partials/filters.vue @@ -497,6 +497,7 @@ export default { } this.change() }, + // @TODO - Improve logic to work for all sorts ideally. setSortAlphabetically() { if ( ! this.sortAlphabetically) { this.params.sort_by = getDefaultParams().sort_by diff --git a/vite.config.js b/vite.config.js index beb42c7ac..1d44bbeb4 100644 --- a/vite.config.js +++ b/vite.config.js @@ -125,9 +125,6 @@ export default defineConfig({ extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'], }, server: { - watch: { - usePolling: true, - }, port: 5000, strictPort: true, },