We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce438d commit c60fe46Copy full SHA for c60fe46
1 file changed
apps/demos/Demos/Chat/MessageStreaming/Angular/app/app.component.html
@@ -30,16 +30,14 @@
30
}}</div>
31
<div class="chat-suggestion-cards">
32
@for (card of suggestionCards; track card.title) {
33
- <button
34
- type="button"
35
- class="chat-suggestion-card"
36
- (click)="onSuggestionClick(card.prompt)"
37
- >
38
- <div class="chat-suggestion-card-title">{{ card.title }}</div>
39
- <div class="chat-suggestion-card-prompt">{{
40
- card.description
41
- }}</div>
42
- </button>
+ <button
+ type="button"
+ class="chat-suggestion-card"
+ (click)="onSuggestionClick(card.prompt)"
+ >
+ <div class="chat-suggestion-card-title">{{ card.title }}</div>
+ <div class="chat-suggestion-card-prompt">{{ card.description }}</div>
+ </button>
43
}
44
</div>
45
0 commit comments