Update settings page w/ deleting your account. and update translations.

This commit is contained in:
yuanhau 2025-06-03 11:01:20 +08:00
parent 3ebaff5218
commit 45397675f5
6 changed files with 147 additions and 33 deletions

View file

@ -460,10 +460,10 @@ const openArticles = async (slug: string, titleName?: string) => {
}, 1000);
};
const openNewsSourcePage = async (slug: string) => {
const openNewsSourcePage = async (slug: string, title: string) => {
openingAppViaAnApp.value = true;
passedValues.value = slug;
const titleNameFinal = slug ? "關於" + slug : t("app.aboutNewsOrg");
const titleNameFinal = title ? "關於" + title : t("app.aboutNewsOrg");
findAndOpenWindow("aboutNewsOrg", titleNameFinal);
setTimeout(() => {