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
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 007b46223a - Show all commits
@@ -15,8 +15,8 @@ limitations under the License.
--> -->
<script setup> <script setup>
import SearchBar from '../features/search/components/SearchBar.vue';
import logo from '@/assets/images/logo.svg'; import logo from '@/assets/images/logo.svg';
import SearchBar from '@/features/search/components/SearchBar.vue';
import { ref } from 'vue'; import { ref } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
+1 -1
View File
@@ -16,9 +16,9 @@ limitations under the License.
import LegalNoticeView from '@/features/legal/views/LegalNoticeView.vue'; import LegalNoticeView from '@/features/legal/views/LegalNoticeView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue'; import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
import SearchView from '@/features/search/views/SearchView.vue';
import SettingsView from '@/features/settings/views/SettingsView.vue'; import SettingsView from '@/features/settings/views/SettingsView.vue';
import NotFound from '@/views/NotFound.vue'; import NotFound from '@/views/NotFound.vue';
import SearchView from '@/views/SearchView.vue';
import { i18n } from '@/i18n'; import { i18n } from '@/i18n';
import { createRouter, createWebHistory } from 'vue-router'; import { createRouter, createWebHistory } from 'vue-router';