Compare commits
No commits in common. "a1929544a6f87d41873263a3d17f9b3c83c20552" and "c797d18e822b42b363330f21d525ef4aa2cabb13" have entirely different histories.
a1929544a6
...
c797d18e82
|
|
@ -48,7 +48,6 @@ 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,7 +508,11 @@ function SuggestionList({
|
||||||
}) {
|
}) {
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { textInput } = usePromptInputController();
|
const { textInput } = usePromptInputController();
|
||||||
const suggestions =t.inputBox.suggestions
|
const searchParams = useSearchParams();
|
||||||
|
const suggestions =
|
||||||
|
searchParams.get("mode") === "skill"
|
||||||
|
? t.inputBox.suggestions
|
||||||
|
: t.inputBox.suggestionsCreate;
|
||||||
const promptSuggestions = suggestions.filter(
|
const promptSuggestions = suggestions.filter(
|
||||||
(
|
(
|
||||||
suggestion,
|
suggestion,
|
||||||
|
|
|
||||||
|
|
@ -426,13 +426,6 @@
|
||||||
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