mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
58feb07119
This has a side effect of adding #23 as well. A more performant caching method is probably needed (as this doesn't cache at all).
21 lines
875 B
HTML
21 lines
875 B
HTML
<div id="wrapper">
|
|
<my-scalar-close></my-scalar-close>
|
|
<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-integration *ngFor="let integration of integrations"
|
|
[integration]="integration"
|
|
[roomId]="roomId"
|
|
[scalarToken]="scalarToken"
|
|
(updated)="updateIntegration(integration)"></my-integration>
|
|
</div>
|
|
</div>
|
|
</div> |