Skip to content

Commit

Permalink
fix nested p tags in instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
eminos committed Oct 9, 2023
1 parent bd7a96e commit 6d98802
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions resources/js/compontents/GroupFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<label class="publish-field-label">
<span v-text="config.display" v-tooltip="{content: config.handle, delay: 300, autoHide: false}"></span>
</label>
<div class="help-block -mt-2" v-if="config.instructions">
<p v-html="$options.filters.markdown(config.instructions)"></p>
</div>
<div class="help-block -mt-2" v-if="config.instructions" v-html="$options.filters.markdown(config.instructions)"></div>
</div>
<div class="toggle-fieldtype-wrapper grp-mt-2" v-if="config.show_toggle">
<toggle-input v-model="toggle"></toggle-input>
Expand Down

0 comments on commit 6d98802

Please sign in to comment.