Skip to content

Commit

Permalink
fix: add tooltip for required
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mulier-p committed Jan 28, 2025
1 parent 4e2e224 commit ec55d2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/plugins/CollapsibleProperties.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
@expand="initiallyExpanded = true"
>
<template #additionalButtonText>
<span v-if="property['$required']" class="text-danger"> *</span>
<Tooltip v-if="property['$required']" class="d-flex" title="Required">
<span class="text-danger"> *</span>
</Tooltip>
</template>
<template #buttonRight="{collapsed}">
<span class="d-flex flex-grow-1 align-items-center justify-content-between">
Expand Down

1 comment on commit ec55d2f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.