Skip to content

Commit bbc03f1

Browse files
authored
Merge pull request #224 from dgavini/Dheeraj_CTM_656_InputToggle
Dheeraj_CTM_656_InputToggle
2 parents 29aa314 + 1ece5f6 commit bbc03f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/ui/src/lib/custom-rjsf-templates/CtimsInputWithExcludeToggle.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const CtimsInputWithExcludeToggle = (props: WidgetProps) => {
9393
onFocus={_onFocus}
9494
/>
9595
<div style={{ display: 'flex' }}>
96-
<div className={styles.label}> Exclude this diagnosis from matches </div>
96+
<div className={styles.label}> Exclude this criteria from matches.</div>
9797
<div style={{marginLeft: 'auto', marginTop: '10px'}}><IOSSwitch disabled={!value} value={value ? value.startsWith('!') : false} onChange={(checked: boolean) => {
9898
const newValue = checked ? '!' + value : value.replace('!', '');
9999
onChange(newValue);

0 commit comments

Comments
 (0)