Compare commits
3 Commits
c797d18e82
...
a1929544a6
| Author | SHA1 | Date |
|---|---|---|
|
|
a1929544a6 | |
|
|
e6620e4b91 | |
|
|
927830198c |
|
|
@ -48,6 +48,7 @@ sandbox_image_cache.tar
|
|||
frontend/imports
|
||||
frontend/test-results
|
||||
frontend/.cache
|
||||
proofshot-artifacts
|
||||
|
||||
# ignore the legacy `web` folder
|
||||
web/
|
||||
|
|
|
|||
|
|
@ -508,11 +508,7 @@ function SuggestionList({
|
|||
}) {
|
||||
const { t } = useI18n();
|
||||
const { textInput } = usePromptInputController();
|
||||
const searchParams = useSearchParams();
|
||||
const suggestions =
|
||||
searchParams.get("mode") === "skill"
|
||||
? t.inputBox.suggestions
|
||||
: t.inputBox.suggestionsCreate;
|
||||
const suggestions =t.inputBox.suggestions
|
||||
const promptSuggestions = suggestions.filter(
|
||||
(
|
||||
suggestion,
|
||||
|
|
|
|||
|
|
@ -426,6 +426,13 @@
|
|||
p {
|
||||
font-size: calc(14px * var(--zoom-scale));
|
||||
}
|
||||
/* 特别指定,代码块和正文一样的字体 */
|
||||
code,
|
||||
kbd,
|
||||
samp,
|
||||
pre {
|
||||
font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
|
||||
}
|
||||
|
||||
/* 列表项 - 14px */
|
||||
[data-streamdown="list-item"] {
|
||||
|
|
|
|||
Loading…
Reference in New Issue