TP-55129 | GLOBAL_SEARCH_ELEMENT_OBSERVABILITY_STATE IDLE state added (#821)

* TP-55129 | GLOBAL_SEARCH_ELEMENT_OBSERVABILITY_STATE IDLE state added

* TP-55129 | GLOBAL_SEARCH_ELEMENT_OBSERVABILITY_STATE null state added

* TP-55129 | TestArea fixed for waive fee form

---------

Co-authored-by: Anshuman Rai <anshuman.navi@gmail.com>
This commit is contained in:
Anshuman Rai
2024-02-07 23:10:10 +05:30
committed by GitHub
parent 35eea91d1a
commit c42ef2d60c
3 changed files with 10 additions and 1 deletions

View File

@@ -354,6 +354,7 @@ const AutoComplete: React.FC = () => {
};
clickAndBlurSelectedElement(elementToObserve);
setSelectedElementObservable(null);
} else if (
selectedElementObservable === GLOBAL_SEARCH_ELEMENT_OBSERVABILITY_STATE.NOT_VISIBLE
) {

View File

@@ -155,7 +155,7 @@ const WaiveFeeForm = ({
{...register(`componentAdjustments.${index}.remark`, {
required: ErrorTexts.REQUIRED
})}
containerClassName={styles.formInput}
containerClassName={cx(styles.formInput, styles.formInputSize)}
error={errors.componentAdjustments?.[index]?.remark?.message}
value={comment}
required

View File

@@ -524,6 +524,14 @@
width: 100%;
background-color: var(--navi-color-gray-bg-primary);
}
.formInputSize {
min-width: 0px !important;
textarea {
min-width: 0px !important;
}
}
}
.actionContainer {