Skip to content

Commit

Permalink
fix(StudyList): camel case colSpan (OHIF#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
laozhu authored and swederik committed Oct 29, 2019
1 parent a0180a9 commit 0d498ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/ui/src/components/studyList/StudyList.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ function StudyList(props) {
{/* LOADING */}
{isLoading && (
<tr className="no-hover">
<td colspan={tableMeta.length}>
<td colSpan={tableMeta.length}>
<StudyListLoadingText />
</td>
</tr>
)}
{!isLoading && hasError && (
<tr className="no-hover">
<td colspan={tableMeta.length}>
<td colSpan={tableMeta.length}>
<div className="notFound">
{t('There was an error fetching studies')}
</div>
Expand All @@ -162,7 +162,7 @@ function StudyList(props) {
{/* EMPTY */}
{!isLoading && !studies.length && (
<tr className="no-hover">
<td colspan={tableMeta.length}>
<td colSpan={tableMeta.length}>
<div className="notFound">{t('No matching results')}</div>
</td>
</tr>
Expand Down

0 comments on commit 0d498ba

Please sign in to comment.