Skip to content

Commit

Permalink
Merge pull request #5919 from deNBI/fix/svmlink
Browse files Browse the repository at this point in the history
adjusted visibility
  • Loading branch information
dweinholz authored Oct 18, 2023
2 parents b99e9de + 9dfb5b1 commit ef8bfde
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/app/projectmanagement/overview.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -746,25 +746,27 @@ <h3>
</div>
</div>
</div>

<div
*ngIf="
project_application &&
(project_application?.user_is_pi || project_application?.user_is_admin || !project_application)
"
class="card-body"
*ngIf="project_application.migrate_to_simple_vm && project_application.migrated_simple_vm_resources"
>
<div
class="row"
*ngIf="project_application.migrate_to_simple_vm && project_application.migrated_simple_vm_resources"
>
<div class="row">
<div class="alert alert-info col-8 mx-auto">
The project is migrated to the new SimpleVM platform. You can access the platform here:
<a class="alert-link" [href]="NEW_SVM_PORTAL_LINK" target="_blank" rel="noreferrer noopener">{{
NEW_SVM_PORTAL_LINK
}}</a>
</div>
</div>
</div>

<div
*ngIf="
project_application &&
(project_application?.user_is_pi || project_application?.user_is_admin || !project_application)
"
class="card-body"
>
<div class="row">
<div class="btn-group col-12">
<button
Expand Down

0 comments on commit ef8bfde

Please sign in to comment.