Unverified Commit 1b01f86c authored by Ahmed Awan's avatar Ahmed Awan Committed by mvdbeek
Browse files

remove unneeded `v-html` from `FormError`



Co-authored-by: default avatarmvdbeek <m.vandenbeek@gmail.com>
parent 07e0efe8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -13,8 +13,7 @@ const props = defineProps<{
    <component :is="props.hasAlertClass ? BAlert : 'span'" show variant="info">
        <div v-for="(alert, index) in props.alerts" :key="index" class="ui-form-error">
            <FontAwesomeIcon class="mr-1" :icon="faExclamation" />
            <!-- eslint-disable-next-line vue/no-v-html -->
            <span class="ui-form-error-text" v-html="alert" />
            <span class="ui-form-error-text">{{ alert }}</span>
        </div>
    </component>
</template>