Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Jul 16, 2024
1 parent dd04d82 commit 46c1d93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v3.51.0

- :bug: Fix broken required (`*`) on input forms ow that we don't use `form-label` due to it's margins

### v3.50.0

- :rocket: Show label conditionally to avoid 4px margin on top of input
Expand Down
9 changes: 4 additions & 5 deletions components/internal/Label.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
<div
v-if='label'
class="px-2"
v-text='label'
:class='{
"required": required
}'
></div>
>
<span v-text='label'/>
<span v-if='required' class='text-red mx-1'>*</span>
</div>
</div>
<div class='ms-auto align-self-center'>
<slot/>
Expand Down

0 comments on commit 46c1d93

Please sign in to comment.