2021-08-16 18:00:59 -04:00
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title" id="modal-basic-title">{{ bot.displayName }}</h4>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" (click)="modal.close()"></button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p>{{ bot.description }}</p>
|
|
|
|
<ui-switch [checked]="bot._inRoom" [disabled]="bot._isUpdating" (change)="toggle()"></ui-switch>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" (click)="modal.close()" title="close" class="btn btn-secondary btn-sm">
|
|
|
|
<i class="far fa-times-circle"></i> {{'Close' | translate}}
|
|
|
|
</button>
|
2020-10-23 07:30:20 -04:00
|
|
|
</div>
|