[Update] Config Page: Auto Export Message Logs. Add open folder button.

This commit is contained in:
Sakamoto Shiina
2024-10-16 23:50:55 +09:00
parent 3e88604fd7
commit 2f6a9d4f2b
9 changed files with 66 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
import { useStdoutToPython } from "@logics/useStdoutToPython";
export const useOpenFolder = () => {
const { asyncStdoutToPython } = useStdoutToPython();
const openFolder_MessageLogs = () => {
asyncStdoutToPython("/run/open_filepath_logs");
};
return {
openFolder_MessageLogs,
};
};