mirror of
https://github.com/directus/directus.git
synced 2026-02-17 20:22:23 -05:00
Refactor bookmark query navigation (#6170)
* Revert back to using query params for bookmarks Aka "this hurts so much" * Fix collection navigation active state * Add active and query props to v-button Also unify active and activated state. * Remove not needed exact prop from collections navigation
This commit is contained in:
committed by
GitHub
parent
976baa7206
commit
f55a2072e1
@@ -89,7 +89,7 @@ export default defineComponent({
|
||||
|
||||
const openItemLink = computed(() => {
|
||||
if (!item.value) return;
|
||||
return `/collections/${item.value.collection}/-/${encodeURIComponent(item.value.item)}`;
|
||||
return `/collections/${item.value.collection}/${encodeURIComponent(item.value.item)}`;
|
||||
});
|
||||
|
||||
watch(() => props.primaryKey, loadActivity, { immediate: true });
|
||||
|
||||
Reference in New Issue
Block a user