2018-03-25 21:17:09 -04:00
|
|
|
<div class="dialog">
|
|
|
|
<div class="dialog-header">
|
|
|
|
<h4>{{ bot.displayName }}</h4>
|
|
|
|
</div>
|
|
|
|
<div class="dialog-content" style="text-align: center;">
|
|
|
|
<p>{{ bot.description }}</p>
|
|
|
|
<ui-switch [checked]="bot._inRoom" [disabled]="bot._isUpdating" (change)="toggle()"></ui-switch>
|
|
|
|
</div>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<button type="button" (click)="dialog.close()" title="close" class="btn btn-secondary btn-sm">
|
2020-10-23 07:30:20 -04:00
|
|
|
<i class="far fa-times-circle"></i> {{'Close' | translate}}
|
2018-03-25 21:17:09 -04:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-10-23 07:30:20 -04:00
|
|
|
</div>
|