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 bf79f25a33 - Show all commits
+2 -2
View File
@@ -16,7 +16,7 @@ limitations under the License.
<script setup> <script setup>
import { LANGUAGE_PATH } from './config/featureSettings.js'; import { LANGUAGE_PATH } from './config/featureSettings.js';
import Footer from './features/footer/components/Footer.vue'; import AppFooter from './features/footer/components/AppFooter.vue';
import AppNavbar from './features/nav/components/AppNavbar.vue'; import AppNavbar from './features/nav/components/AppNavbar.vue';
import { useSettings } from './features/settings/composables/useSettings.js'; import { useSettings } from './features/settings/composables/useSettings.js';
import { setLocale } from './i18n'; import { setLocale } from './i18n';
@@ -64,7 +64,7 @@ onMounted(() => {
<router-view class="main-content" /> <router-view class="main-content" />
<Footer /> <AppFooter />
</div> </div>
</template> </template>