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