Skip to content

Commit

Permalink
UHF-9108: Fix object Object issue in the optionalResultsText
Browse files Browse the repository at this point in the history
  • Loading branch information
teroelonen committed Jan 25, 2024
1 parent f9f991c commit 391c573
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/js/district-and-project-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/health-station-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/job-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/linkedevents.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/maternity-and-child-health-clinic-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/school-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/react/common/ResultsHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type ResultsHeaderProps = {
const ResultsHeader = forwardRef(({ resultText, optionalResultsText, actions, actionsClass }: ResultsHeaderProps, ref: ForwardedRef<HTMLDivElement>) => (
<div className='hdbt-search--react__result-top-area'>
<h3 className='hdbt-search--react__results--title' ref={ref} >
{resultText} {optionalResultsText && `(${optionalResultsText})`}
{resultText} {optionalResultsText && (<>({optionalResultsText})</> )}
</h3>
{actions && (
<div className={actionsClass}>
Expand Down

0 comments on commit 391c573

Please sign in to comment.