[fix review issue]: update setting name

This commit is contained in:
duanfuxiang
2025-02-17 19:07:33 +08:00
parent 173f2b7fa5
commit dc520535fc
22 changed files with 721 additions and 1269 deletions

View File

@@ -652,7 +652,7 @@ const Chat = forwardRef<ChatRef, ChatProps>((props, ref) => {
{submitMutation.isPending && (
<button onClick={abortActiveStreams} className="infio-stop-gen-btn">
<CircleStop size={16} />
<div>Stop Generation</div>
<div>Stop generation</div>
</button>
)}
</div>

View File

@@ -30,9 +30,9 @@ export default function LLMResponseInfoPopover({
</Popover.Trigger>
{usage ? (
<Popover.Content className="infio-chat-popover-content infio-llm-info-content">
<div className="infio-llm-info-header">LLM Response Information</div>
<div className="infio-llm-info-header">LLM response information</div>
<div className="infio-llm-info-tokens">
<div className="infio-llm-info-tokens-header">Token Count</div>
<div className="infio-llm-info-tokens-header">Token count</div>
<div className="infio-llm-info-tokens-grid">
<div className="infio-llm-info-token-row">
<ArrowUp className="infio-llm-info-icon--input" />
@@ -59,7 +59,7 @@ export default function LLMResponseInfoPopover({
</div>
<div className="infio-llm-info-footer-row">
<Coins className="infio-llm-info-icon--footer" />
<span>Estimated Price:</span>
<span>Estimated price:</span>
<span className="infio-llm-info-footer-value">
{estimatedPrice === null
? 'Not available'

View File

@@ -150,7 +150,7 @@ function CurrentFileBadge({
<span>{mentionable.file.name}</span>
</div>
<div className="infio-chat-user-input-file-badge-name-block-suffix">
{' (Current File)'}
{' (Current file)'}
</div>
</BadgeBase>
) : null