Merge branch 'bugfix/CXTDT-590886' into 'develop'

CXTDT-590886 Fix to make placeholder text visible.

### Summary
Placeholder text is getting hidden when text is empty for the first launch. Added a fix

### JIRA Ticket
https://onejira.verizon.com/browse/CXTDT-590886

Co-authored-by: Nandhini Rajendran <nandhini.rajendran@verizon.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1150
This commit is contained in:
Bruce, Matt R 2024-07-26 19:05:42 +00:00
commit fa3c97cabe

View File

@ -315,7 +315,9 @@ import UIKit
self.showError = false
}
self.isEnabled = model.enabled
self.text = model.text
if let text = model.text, !text.isEmpty {
self.text = model.text
}
})
}