mirror of https://github.com/usememos/memos.git
feat: add timeout validation for AI settings
- Restrict timeout input to 5-60 seconds range - Add automatic fallback to default (10 seconds) for invalid values - Improve input validation with proper number handling Signed-off-by: ChaoLiu <chaoliu719@gmail.com>
This commit is contained in:
parent
533fb3c2ec
commit
0443fdc976
|
|
@ -206,8 +206,24 @@ const AISettings = observer(() => {
|
||||||
min="5"
|
min="5"
|
||||||
max="60"
|
max="60"
|
||||||
placeholder="10"
|
placeholder="10"
|
||||||
value={aiSetting.timeoutSeconds}
|
value={aiSetting.timeoutSeconds || ""}
|
||||||
onChange={(e) => updatePartialSetting({ timeoutSeconds: parseInt(e.target.value) || 10 })}
|
onChange={(e) => {
|
||||||
|
const value = e.target.value;
|
||||||
|
if (value === "") {
|
||||||
|
updatePartialSetting({ timeoutSeconds: undefined });
|
||||||
|
} else {
|
||||||
|
const numValue = parseInt(value);
|
||||||
|
if (!isNaN(numValue)) {
|
||||||
|
updatePartialSetting({ timeoutSeconds: numValue });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
onBlur={(e) => {
|
||||||
|
const value = parseInt(e.target.value);
|
||||||
|
if (isNaN(value) || value < 5 || value > 60) {
|
||||||
|
updatePartialSetting({ timeoutSeconds: 10 });
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<span className="text-sm text-gray-500">{t("setting.ai-section.timeout-description")}</span>
|
<span className="text-sm text-gray-500">{t("setting.ai-section.timeout-description")}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue