ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.html

21 lines
340 B
HTML
Raw Normal View History

2025-08-07 16:42:16 +02:00
<div class="bot-talks-container">
<!-- avatar-->
<div class="bubble">
{{message}}
<br>
@for (link of links; track link.title) {
<span class="link-title">
{{link.title}}
</span>
<span class="taget">
<a href="{{link.url}}">
{{link.label}}
<!-- copy button-->
</a>
</span>
}
</div>
</div>