Hey everyone,
Quick question — I’m trying to customize the appearance of the bookmarks in the admin UI. Specifically, I want to conditionally add a class to this line in navigation-bookmark.vue
: directus/app/src/modules/content/components/navigation-bookmark.vue at main · directus/directus · GitHub
<v-text-overflow :text="name" />
Ideally, I’d like to change it to:
<v-text-overflow :text="name" :class="{ 'bookmark--global': scope === 'global' }" />
But I’d prefer not to modify the core source code directly.
Is there any supported way to override or extend this component via an extension, interface, or module?
Would appreciate any tips or direction.