Skip to content

Commit

Permalink
Merge pull request #77 from CBIIT/dev-1.0.0
Browse files Browse the repository at this point in the history
Dev 1.0.0
  • Loading branch information
David-YuWei authored Sep 28, 2022
2 parents 3643200 + 4f81d93 commit 2485e64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer/FooterView.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const INSFooter = () => {
<Footer classes={styles} data={footerUpdatedData} />
<div>
<div className="beVersion">
Site Data Update (Projects, Publications, Patents): 08/01/2022
Site Data Update (Projects, Publications, Patents): 09/26/2022
<br />
<br />
Site Data Update (Datasets, Clinical Trials): 05/26/2022
Expand Down
6 changes: 4 additions & 2 deletions src/components/serverPaginatedTable/serverPaginatedTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,11 @@ class ServerPaginatedTableView extends React.Component {
open={(isLoading || this.props.isLoading) && data !== 'undefined'}
className={this.props.classes.backdrop}
>
<CircularProgress />
<div style={{ width: '1535px' }}>
<CircularProgress style={{ height: '60px' }} />
</div>
</Backdrop>
{isLoading || this.props.isLoading || data === 'undefined' ? <CircularProgress /> : (
{this.props.isLoading || data === 'undefined' || formatedUpdatedData === 'undefined' ? <div style={{ width: '1535px' }}><CircularProgress style={{ height: '60px' }} /></div> : (
<CustomDataTable
data={formatedUpdatedData}
columns={columns}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/programDetail/programDetailView.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ProgramView = ({ classes, data, theme }) => {
datafield: 'programs',
groupName: 'Program',
isChecked: true,
name: programData.program_acronym,
name: programData.program_id,
section: 'Filter By Cases',
}]);
};
Expand Down

0 comments on commit 2485e64

Please sign in to comment.