mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
9dc4e99aca
- the traslation feature without the changes from other branches
20 lines
788 B
HTML
20 lines
788 B
HTML
<div class="dialog">
|
|
<div class="dialog-header">
|
|
<h4>Sticker Pack: {{ pack.displayName }}</h4>
|
|
</div>
|
|
<div class="dialog-content">
|
|
<div class="sticker" *ngFor="let sticker of pack.stickers trackById">
|
|
<img [src]="getThumbnailUrl(sticker.thumbnail.mxc, 120, 120)" width="120" height="120"/>
|
|
<div class="caption">
|
|
<span class="name">{{ sticker.name }}</span>
|
|
<span class="description">{{ sticker.description }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="dialog-footer">
|
|
<button type="button" (click)="dialog.close()" title="close" class="btn btn-secondary btn-sm">
|
|
<i class="far fa-times-circle"></i> {{'Close' | translate}}
|
|
</button>
|
|
</div>
|
|
</div>
|