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

converter_legacy.py

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>