Skip to content

Commit

Permalink
Fix #3973
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira committed Jun 13, 2024
1 parent ce4fa32 commit 36cbab6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/javascript/vue/components/Filter/Table/TableResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,24 +163,21 @@
type="checkbox"
/>
</td>
<td>
<td v-if="radialObject || radialAnnotator || radialNavigator">
<div class="horizontal-right-content gap-small">
<slot
name="buttons-left"
:item="item"
/>
<RadialAnnotator
v-if="radialAnnotator"
:global-id="item.global_id"
@click="() => (lastRadialOpenedRow = item.id)"
/>
<RadialObject
v-if="radialObject"
:global-id="item.global_id"
@click="() => (lastRadialOpenedRow = item.id)"
/>
<RadialNavigation
v-if="radialNavigator"
:global-id="item.global_id"
:redirect="false"
@delete="emit('remove', { item, index })"
Expand Down

0 comments on commit 36cbab6

Please sign in to comment.