diff options
author | nfebe <fenn25.fn@gmail.com> | 2025-01-27 18:50:04 +0100 |
---|---|---|
committer | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2025-01-29 12:50:12 +0100 |
commit | d3dc6beb00e685e0a3ef9a9a49a288d3ee0b17ba (patch) | |
tree | 71c81488806c93ee3dddc994132addc9ec1e1ece /core | |
parent | eecda06f1ad2832cc2a7b31d646458f730c8412a (diff) | |
download | nextcloud-server-d3dc6beb00e685e0a3ef9a9a49a288d3ee0b17ba.tar.gz nextcloud-server-d3dc6beb00e685e0a3ef9a9a49a288d3ee0b17ba.zip |
refactor: Drop deprecated use of defineStore
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/store/unified-search-external-filters.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/src/store/unified-search-external-filters.js b/core/src/store/unified-search-external-filters.js index 996a882e25f..fdc2ba047ca 100644 --- a/core/src/store/unified-search-external-filters.js +++ b/core/src/store/unified-search-external-filters.js @@ -4,9 +4,7 @@ */ import { defineStore } from 'pinia' -export const useSearchStore = defineStore({ - id: 'search', - +export const useSearchStore = defineStore('search', { state: () => ({ externalFilters: [], }), |