Skip to content
Snippets Groups Projects
Select Git revision
  • bbd06894a21297e65a2607a0ffaffa4852899d42
  • main default protected
2 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    toast.component.html 448 B
    <div class="toast-holder">
        <div *ngFor="let toast of toasts | keyvalue">
            <div class="toast {{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>