Skip to content
Snippets Groups Projects
Select Git revision
  • af7a7d112de0e37ce6de8a08f4cbef2a10bdc1c3
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

toast.component.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    toast.component.html 467 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" aria-hidden="true"></i>
                    </span>
                </a>
                <p>{{toast.value.message}}</p>
            </div>
        </div>
    </div>