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