fix(frontend): Linting errors/warnings opgelost
This commit is contained in:
parent
b2e6b33716
commit
4d98be78c1
26 changed files with 272 additions and 258 deletions
|
@ -10,12 +10,12 @@
|
|||
|
||||
const query = computed({
|
||||
get: () => route.query.query as string | null,
|
||||
set: (newValue) => router.push({path: SEARCH_PATH, query: {query: newValue}})
|
||||
set: async (newValue) => router.push({path: SEARCH_PATH, query: {query: newValue}})
|
||||
});
|
||||
|
||||
const queryInput = ref(query.value);
|
||||
|
||||
function search() {
|
||||
function search(): void {
|
||||
query.value = queryInput.value;
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue