feat(settings): add settings page link

This commit is contained in:
2026-07-28 20:08:39 +02:00
committed by jakob.scheid
parent d78beffabd
commit 248adf40b0
4 changed files with 77 additions and 0 deletions
@@ -18,6 +18,7 @@ limitations under the License.
import Switch from './Switch.vue';
import SettingsInput from './SettingsInput.vue';
import Selection from './Selection.vue';
import SettingsPageLink from './SettingsPageLink.vue';
import { useI18n } from 'vue-i18n';
@@ -58,6 +59,11 @@ const props = defineProps({
:setting="setting"
:path="`${props.path}.${setting.name}`"
/>
<SettingsPageLink
v-if="setting.type === 'section'"
:display-name="t(setting.i18n)"
:target="`${props.path}.${setting.name}`"
/>
</div>
</div>
</template>