Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • b2326d8502ebf7464ab1c68e196d118af25777a2
  • main default protected
2 results

process_main.py

Blame
  • Forked from Ockenden, Samuel / CiS Projekt
    Source project has a limited visibility.
    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>