15 lines
308 B
HTML
15 lines
308 B
HTML
<div class="bubble-main">
|
|
<ul>
|
|
<li *ngIf="stickerUrl">
|
|
<img
|
|
[src]="stickerUrl"
|
|
onerror="this.src='assets/sticker/sticker_default.png'"
|
|
/>
|
|
</li>
|
|
<li
|
|
*ngIf="contents"
|
|
[innerHTML]="contents | linefeedtohtml | ucapSafeHtml | linky"
|
|
></li>
|
|
</ul>
|
|
</div>
|