fix(nc-gui): z index issue in readonly view

This commit is contained in:
Ramesh Mane
2025-01-28 13:18:30 +00:00
parent 05b00ed372
commit eaf276b5f4
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ const validEmail = computed(() => props.modelValue && validateEmail(props.modelV
<nuxt-link
v-if="validEmail"
no-ref
class="py-1 underline inline-block nc-cell-field-link max-w-full"
class="py-1 underline inline-block nc-cell-field-link max-w-full relative z-3"
:href="`mailto:${modelValue}`"
target="_blank"
:tabindex="readOnly ? -1 : 0"