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).
16 lines
769 B
HTML
16 lines
769 B
HTML
<div class="integration">
|
|
<img [src]="integration.avatar" class="avatar">
|
|
<div class="title">
|
|
<b>{{ integration.name }}</b>
|
|
<div style="display: flex;">
|
|
<div class="switch">
|
|
<ui-switch [checked]="integration.isEnabled" size="small" [disabled]="integration.isBroken" (change)="update()"></ui-switch>
|
|
</div>
|
|
<div class="toolbar">
|
|
<i class="fa fa-question-circle text-info" ngbTooltip="{{integration.about}}" *ngIf="integration.about"></i>
|
|
<i class="fa fa-cog text-info config-icon" (click)="configureIntegration()" *ngIf="integration.isEnabled && integration.hasConfig"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="clear: both;"></div>
|
|
</div> |