Skip to content

Commit

Permalink
merging client_2021 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
regulator95 committed Jul 25, 2022
1 parent 07b7f82 commit c4bba06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
<td colspan="2" class="header">
<canano-header></canano-header>
<div *ngIf="maintenanceDate()" style="background-color:darkred; font-weight:Bold; color:white;padding:2px 0px 2px 20px;">
caNanoLab will be unavailable on July 20, 2022.
caNanoLab is moving and will be unavailable August 8th – August 10th for migration.<br />
Users will be redirected once the move is complete. Please reach out to <a style="color:white;" href="mailto:[email protected]">[email protected]</a> for any questions.
</div>
<canano-top-main-menu></canano-top-main-menu>
</td>
Expand Down Expand Up @@ -104,7 +105,7 @@
</tr>
<tr *ngIf="!print">
<td colspan="2" class="footer white release">
caNanoLab Release 3.0 Build cananolab-3.0.0-it3
caNanoLab Release 3.0 Build cananolab-3.0.0-it4
</td>
</tr>
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class CananolabClientComponent implements OnInit{
}

maintenanceDate() {
let maintenance_date = new Date('8/28/2022').getTime();
let maintenance_date = new Date('8/1/2022').getTime();
let current_date = new Date().getTime();
if (current_date>maintenance_date) {
return true
Expand Down

0 comments on commit c4bba06

Please sign in to comment.