Skip to content

Commit

Permalink
Merge pull request #200 from concord-consortium/fix-added-interpolati…
Browse files Browse the repository at this point in the history
…on-dollar-signs

fixed: Interpolation dollar signs showing around completion status
  • Loading branch information
dougmartin authored Oct 17, 2023
2 parents 43024c1 + b7a44b9 commit 9b07927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion researcher-reports/src/components/query-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const QueryItem: React.FC<IProps> = (props) => {
{resourceName && <div className="item-info">{`Name: ${resourceName}`}</div>}
{resourceType && <div className="item-info">{`Type: ${resourceType}`}</div>}
<div className="item-info">{`Creation date: ${submissionDateTime}`}</div>
<div className="item-info">Completion status: <span className={lowerQueryCompletionStatus}>${lowerQueryCompletionStatus}${completionStatusSuffix}</span></div>
<div className="item-info">Completion status: <span className={lowerQueryCompletionStatus}>{lowerQueryCompletionStatus}{completionStatusSuffix}</span></div>
{ showGenerateCSVLinkButton
? <button onClick={handleGetSignedDownloadLink} disabled={!succeeded}>Generate CSV Download Link</button>
: <>
Expand Down

0 comments on commit 9b07927

Please sign in to comment.