fix: rowid column shift in get_message_with_rowid; add file logging and frontend error reporting

This commit is contained in:
Xianren Studio
2026-08-13 23:31:06 +08:00
parent 57df39e4ce
commit 00624d81cf
8 changed files with 77 additions and 4 deletions
+13 -1
View File
@@ -30,6 +30,19 @@ export default function SettingsPage() {
<div>
<span className="text-slate-300">{info?.db_path}</span>
</div>
<div className="flex items-center gap-2">
<span>
<span className="text-slate-300">{info?.logs_dir}</span>
</span>
{info?.logs_dir ? (
<button
className="text-xs text-slate-400 hover:text-slate-200"
onClick={() => api.openPath(info.logs_dir!)}
>
</button>
) : null}
</div>
<div>
{info?.engine_exists ? (
@@ -103,4 +116,3 @@ function SettingInput({
</label>
);
}