-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/add numeric value ranges #47
Feat/add numeric value ranges #47
Conversation
109ba3e
to
e50810d
Compare
concept?.units ?? "" | ||
})`; | ||
} | ||
return rangeString; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we make the ranges or the Test bold atleast
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How is that done? inline styling?
src/results/result-form.resource.ts
Outdated
hiNormal: number; | ||
hiAbsolute: number; | ||
hiCritical: number; | ||
lowNormal: number; | ||
lowAbsolute: number; | ||
lowCritical: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these generic to all concept responses? if not we should make them ternary
hiNormal: number; | |
hiAbsolute: number; | |
hiCritical: number; | |
lowNormal: number; | |
lowAbsolute: number; | |
lowCritical: number; | |
hiNormal?: number; | |
hiAbsolute?: number; | |
hiCritical?: number; | |
lowNormal?: number; | |
lowAbsolute?: number; | |
lowCritical?: number; |
src/results/result-form.resource.ts
Outdated
hiNormal: number; | ||
hiAbsolute: number; | ||
hiCritical: number; | ||
lowNormal: number; | ||
lowAbsolute: number; | ||
lowCritical: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same comment applies here about adding the ternary
Review comments addressed. Please check. @jabahum @pirupius @donaldkibet |
Requirements
Summary
Display value ranges for numeric test results
Screenshots
Related Issue
Other