Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • a98e8070adbc98bec827eee505e3989a01abb11e
  • master default protected
  • updates
  • hierarchical-keywords
  • map
  • topoi
  • layer
  • tsne-layout
8 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    toast.component.html 479 B
    <div class="toast-holder">
        <div *ngFor="let toast of toasts | keyvalue">
            <div class="toast {{getDrugstoneClass(toast.value.type)}}">
                <a (click)="close(toast.key)" aria-label="close" class="close">
                    <span class="icon" title="Close analysis">
                        <i class="fas fa-times toast-times" aria-hidden="true"></i>
                    </span>
                </a>
                <p>{{toast.value.message}}</p>
            </div>
        </div>
    </div>