inertia-bootstrap-forms 2.1.7 → 2.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inertia-bootstrap-forms",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "Create bootstrap forms with inertia and twitter bootstrap",
5
5
  "main": "dist/inertia-bootstrap-forms.cjs.js",
6
6
  "module": "dist/inertia-bootstrap-forms.es.js",
@@ -205,7 +205,7 @@ export default defineComponent({
205
205
  <slot name="errors">
206
206
  <Alert type="danger" v-if="form.hasErrors">
207
207
  <ul class="list-unstyled p-0 m-0 fanum">
208
- <li v-for="error in form.errors">{{ error }}</li>
208
+ <li v-for="error in form.errors" v-html="error"></li>
209
209
  </ul>
210
210
  </Alert>
211
211
  </slot>