mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
removes the shared storage for the searchbar and saves the data local in the searchbar again
This commit is contained in:
@@ -2,7 +2,6 @@ import person from "./person.js";
|
||||
import raum from "./raum.js";
|
||||
import employee from "./employee.js";
|
||||
import organisationunit from "./organisationunit.js";
|
||||
import {searchSettings, searchresult} from "./sharedSettings.js";
|
||||
|
||||
export default {
|
||||
props: [ "searchoptions", "searchfunction","selectedtypes" ],
|
||||
@@ -12,8 +11,11 @@ export default {
|
||||
searchtimer: null,
|
||||
hidetimer: null,
|
||||
showsettings: false,
|
||||
searchsettings: searchSettings,
|
||||
searchresult: searchresult,
|
||||
searchsettings: {
|
||||
searchstr: '',
|
||||
types: [],
|
||||
},
|
||||
searchresult: [],
|
||||
showresult: false,
|
||||
searching: false,
|
||||
error: null,
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
let searchSettings = Vue.reactive({
|
||||
searchstr: '',
|
||||
types: [],
|
||||
|
||||
});
|
||||
|
||||
let searchresult = Vue.reactive([]);
|
||||
|
||||
|
||||
export {searchSettings, searchresult};
|
||||
Reference in New Issue
Block a user