shortcuts.component.html 379 B

123456789101112
  1. <div class="container">
  2. <div class="row mb-2 border-bottom pb-2 pt-2" *ngFor="let shortcut of shortcuts">
  3. <div class="col">
  4. {{ shortcut.label | translate }}
  5. </div>
  6. <div class="col">
  7. <span class="shortcuts-instruction-item" *ngFor="let item of shortcut.instructions" [attr.type]="item.type">
  8. {{item.text}}
  9. </span>
  10. </div>
  11. </div>
  12. </div>