15 lines
316 B
HTML
Raw Normal View History

2019-10-21 13:20:14 +09:00
<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>
2019-10-21 13:20:14 +09:00
</div>