Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App / M2O: Add option to navigate to related item #23997

Merged
merged 7 commits into from
Nov 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Hide "Edit" icon if is readonly and has "Item Link"
  • Loading branch information
joselcvarela committed Nov 8, 2024
commit a76cf87579e83296c8941859c60991becc4f360b
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,13 @@ const itemLink = computed(() => {
<router-link v-if="enableLink" v-slot="{ navigate }" v-tooltip="t('navigate_to_item')" :to="itemLink" custom>
<v-icon name="launch" class="item-link" @click.stop="navigate" />
</router-link>
<v-icon v-tooltip="t('edit')" name="edit" class="edit" @click="editModalActive = true" />
<v-icon
v-if="!(disabled && enableLink)"
v-tooltip="t('edit')"
name="edit"
class="edit"
@click="editModalActive = true"
/>
<v-icon
v-if="!disabled"
v-tooltip="t('deselect')"
Expand Down
Loading