Skip to content

Commit 2aa4111

Browse files
committed
Revert back to star
1 parent 92caf45 commit 2aa4111

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

js/chat/chat.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ shiny-chat-container {
3333
}
3434

3535
&::after {
36-
content: "\29C9"; // two overlapping squares
36+
content: "\2726"; // diamond/star
3737
display: inline-block;
3838
margin-inline-start: 0.15em;
3939
}

shiny/www/py-shiny/chat/chat.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny/www/py-shiny/chat/chat.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/playwright/shiny/components/chat/input-suggestion/app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
from shiny.express import ui
22

3-
welcome = ui.HTML(
4-
"""
3+
welcome = """
54
<p>Here is the <span id="first" class='suggestion'>1st input suggestion</span>.
65
And here is a <span id="second" data-suggestion='The actual suggestion'>2nd suggestion</span>.
76
Finally, a <img id="third" data-suggestion='A 3rd, image-based, suggestion' src='shiny-hex.svg' height="50px" alt='Shiny logo'> image suggestion.</p>
87
98
<p>On the other hand, <span id="fourth" class="suggestion submit">this suggestion will auto-submit</span>.
109
And <span id="fifth" data-suggestion="another suggestion" data-suggestion-submit="true">this suggestion will also auto-submit</span>.</p>
1110
"""
12-
)
1311

1412
chat = ui.Chat(
1513
"chat",

0 commit comments

Comments
 (0)