mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
18 lines
437 B
HTML
18 lines
437 B
HTML
<!-- <select>
|
|
<options [value]="dev.deviceId" *ngFor="let dev in devices$ | async">
|
|
{{ dev.label }}
|
|
</options>
|
|
</select> -->
|
|
|
|
<div class="device-container">
|
|
<button
|
|
[class.selected]="(selectedDevice$ | async) === dev.deviceId"
|
|
*ngFor="let dev of devices$ | async"
|
|
(click)="setSelectedDevice(dev.deviceId)"
|
|
>
|
|
{{ dev.label }}
|
|
</button>
|
|
</div>
|
|
|
|
<video class="scanner-container" #scanContainer></video>
|