Style: make code style consistent #186

Merged
jakob.scheid merged 29 commits from style/make-code-style-consistent into main 2026-08-09 13:09:54 +02:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 049857fe91 - Show all commits
@@ -15,7 +15,7 @@ limitations under the License.
-->
<script setup>
import Searchbar from '@/features/search/components/Searchbar.vue';
import SearchBar from '@/features/search/components/SearchBar.vue';
import { watch } from 'vue';
import { useRoute } from 'vue-router';
@@ -34,7 +34,7 @@ watch(() => route.query.q, q => {
</script>
<template>
<Searchbar
<SearchBar
v-if="route.name === 'searchResults'"
v-model="searchQueryModel"
auto-submit
+2 -2
View File
@@ -15,7 +15,7 @@ limitations under the License.
-->
<script setup>
import Searchbar from '../features/search/components/Searchbar.vue';
import SearchBar from '../features/search/components/SearchBar.vue';
import logo from '@/assets/images/logo.svg';
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
@@ -35,7 +35,7 @@ const searchQuery = ref('');
</header>
<div class="search-container">
<Searchbar v-model="searchQuery" ref="searchbar" class="search-bar" auto-submit />
<SearchBar v-model="searchQuery" ref="searchbar" class="search-bar" auto-submit />
</div>
</div>
</template>