We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a1410 commit a47c009Copy full SHA for a47c009
1 file changed
resources/js/components/inputs/relationship/Selector.vue
@@ -35,7 +35,7 @@
35
<Panel class="relative mb-0! overflow-x-auto overscroll-x-contain">
36
<Table>
37
<template #cell-title="{ row: entry, isColumnVisible }">
38
- <a class="title-index-field" :href="entry.edit_url" @click.stop>
+ <a class="title-index-field" :href="entry.edit_url" @click.prevent="toggleSelection(entry.id)">
39
<StatusIndicator v-if="!isColumnVisible('status')" :status="entry.status" />
40
<span v-text="entry.title" />
41
</a>
@@ -71,7 +71,7 @@
71
:site="site"
72
:preferences-prefix="`selector-field.${name}`"
73
:editable="false"
74
- @branch-clicked="$refs[`tree-branch-${$event.id}`].click()"
+ @branch-clicked="toggleSelection($event.id)"
75
>
76
<template #branch-action="{ branch, index }">
77
<div>
0 commit comments