revert formatting

This commit is contained in:
Tomazed 2023-02-03 11:25:02 +01:00
parent c411cf04cc
commit 8c4d3b93c8

View File

@ -1,15 +1,13 @@
<template> <template>
<div> <div>
<app-settings-content :header-text="$strings.HeaderItemMetadataUtils"> <app-settings-content :header-text="$strings.HeaderItemMetadataUtils">
<nuxt-link to="/config/item-metadata-utils/tags" <nuxt-link to="/config/item-metadata-utils/tags" class="block w-full rounded bg-primary/40 hover:bg-primary/60 text-gray-300 hover:text-white p-4 mt-6 mb-2">
class="block w-full rounded bg-primary/40 hover:bg-primary/60 text-gray-300 hover:text-white p-4 mt-6 mb-2">
<div class="flex justify-between"> <div class="flex justify-between">
<p>{{ $strings.HeaderManageTags }}</p> <p>{{ $strings.HeaderManageTags }}</p>
<span class="material-icons">arrow_forward</span> <span class="material-icons">arrow_forward</span>
</div> </div>
</nuxt-link> </nuxt-link>
<nuxt-link to="/config/item-metadata-utils/genres" <nuxt-link to="/config/item-metadata-utils/genres" class="block w-full rounded bg-primary/40 hover:bg-primary/60 text-gray-300 hover:text-white p-4 my-2">
class="block w-full rounded bg-primary/40 hover:bg-primary/60 text-gray-300 hover:text-white p-4 my-2">
<div class="flex justify-between"> <div class="flex justify-between">
<p>{{ $strings.HeaderManageGenres }}</p> <p>{{ $strings.HeaderManageGenres }}</p>
<span class="material-icons">arrow_forward</span> <span class="material-icons">arrow_forward</span>
@ -27,11 +25,11 @@ export default {
watch: {}, watch: {},
computed: {}, computed: {},
methods: { methods: {
init() { } init() {}
}, },
mounted() { mounted() {
this.init() this.init()
}, },
beforeDestroy() { } beforeDestroy() {}
} }
</script> </script>