mirror of
https://github.com/directus/directus.git
synced 2026-02-16 08:25:10 -05:00
smaller and bolder breadcrumb (#8566)
* smaller and bolder breadcrumb * Use breadcrumb in settings Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<private-view :title="t('settings_data_model')">
|
||||
<template #headline>{{ t('settings') }}</template>
|
||||
<template #headline><v-breadcrumb :items="[{ name: t('settings'), to: '/settings' }]" /></template>
|
||||
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded disabled icon secondary>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<private-view :title="collectionInfo && collectionInfo.name">
|
||||
<template #headline>{{ t('settings_data_model') }}</template>
|
||||
<template #headline>
|
||||
<v-breadcrumb :items="[{ name: t('settings_data_model'), to: '/settings/data-model' }]" />
|
||||
</template>
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded icon exact to="/settings/data-model">
|
||||
<v-icon name="arrow_back" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<private-view :title="t('settings_presets')">
|
||||
<template #headline>{{ t('settings') }}</template>
|
||||
<template #headline><v-breadcrumb :items="[{ name: t('settings'), to: '/settings' }]" /></template>
|
||||
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded disabled icon secondary>
|
||||
|
||||
@@ -10,7 +10,9 @@
|
||||
readonly
|
||||
>
|
||||
<private-view :title="t('editing_preset')">
|
||||
<template #headline>{{ t('settings_presets') }}</template>
|
||||
<template #headline>
|
||||
<v-breadcrumb :items="[{ name: t('settings_presets'), to: '/settings/presets' }]" />
|
||||
</template>
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded icon exact :to="backLink">
|
||||
<v-icon name="arrow_back" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<private-view :title="t('settings_project')">
|
||||
<template #headline>{{ t('settings') }}</template>
|
||||
<template #headline><v-breadcrumb :items="[{ name: t('settings'), to: '/settings' }]" /></template>
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded disabled icon secondary>
|
||||
<v-icon name="public" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<private-view :title="t('settings_permissions')">
|
||||
<template #headline>{{ t('settings') }}</template>
|
||||
<template #headline><v-breadcrumb :items="[{ name: t('settings'), to: '/settings' }]" /></template>
|
||||
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded disabled icon secondary>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<private-view :title="loading ? t('loading') : t('editing_role', { role: item && item.name })">
|
||||
<template #headline>{{ t('settings_permissions') }}</template>
|
||||
<template #headline>
|
||||
<v-breadcrumb :items="[{ name: t('settings_permissions'), to: '/settings/roles' }]" />
|
||||
</template>
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded icon exact :to="`/settings/roles/`">
|
||||
<v-icon name="arrow_back" />
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
collection="directus_webhooks"
|
||||
>
|
||||
<private-view :title="t('webhooks')">
|
||||
<template #headline>{{ t('settings') }}</template>
|
||||
<template #headline><v-breadcrumb :items="[{ name: t('settings'), to: '/settings' }]" /></template>
|
||||
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded disabled icon secondary>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<private-view :title="title">
|
||||
<template #headline>{{ t('settings_webhooks') }}</template>
|
||||
<template #headline>
|
||||
<v-breadcrumb :items="[{ name: t('settings_webhooks'), to: '/settings/webhooks' }]" />
|
||||
</template>
|
||||
|
||||
<template #title-outer:prepend>
|
||||
<v-button class="header-icon" rounded icon exact :to="`/settings/webhooks/`">
|
||||
|
||||
Reference in New Issue
Block a user