success highlight

This commit is contained in:
SujathaAnishetty 2026-01-07 15:20:39 -05:00
parent 08f996cdef
commit 43449e706c
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
<template> <template>
<div <div
class="textarea-question" class="textarea-question"
:class="(errors && errors.length) ? 'has-error' : ''"> :class="(errors && errors.length) ? 'has-error' : 'has-success'">
<label <label
:for="inputId" :for="inputId"
class="form-label"> class="form-label">

View file

@ -1,7 +1,7 @@
<template> <template>
<div <div
class="textbox-question" class="textbox-question"
:class="(errors && errors.length) || hasError ? 'has-error' : ''"> :class="(errors && errors.length) || hasError ? 'has-error' : 'has-success'">
<label <label
v-if="displayQuestionText" v-if="displayQuestionText"
:for="inputId" :for="inputId"