mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16e28019bc
This adds #11
13 lines
523 B
HTML
13 lines
523 B
HTML
<div *ngIf="error">
|
|
<p class="text-danger">{{ error }}</p>
|
|
</div>
|
|
<div *ngIf="loading && !error">
|
|
<p><i class="fa fa-circle-o-notch fa-spin"></i> Loading...</p>
|
|
</div>
|
|
<div *ngIf="!error && !loading">
|
|
<h3>Manage Integrations</h3>
|
|
<p>Turn on anything you like. If an integration has some special configuration, it will have a configuration icon next to it.</p>
|
|
<div class="integration-container">
|
|
<my-bot *ngFor="let bot of bots" [bot]="bot" (updated)="updateBot(bot)"></my-bot>
|
|
</div>
|
|
</div> |