Made the basic newsView, the only issue? You need to luanch the window TWICE in order to see the window, strange behavior? this also exists before btw.

This commit is contained in:
yuanhau 2025-05-30 00:29:59 +08:00
parent 122a01fe73
commit b6f67d9db8
6 changed files with 36 additions and 15 deletions

View file

@ -274,10 +274,9 @@ const navBarDisplayText = (text: string) => {
return text;
}
const maxStay = text.match(regex);
const filterToMax7Chars = maxStay[0] + "..."
const filterToMax7Chars = maxStay[0] + "...";
return filterToMax7Chars;
}
};
const findAndOpenWindow = (windowName: string, windowTitle?: string) => {
const app = associAppWindow.find((app) => app.name === windowName);