From d3f4e474fc9048c906bf9a1bde00f16d51bd220c Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 29 Aug 2022 01:33:30 +0200 Subject: [PATCH] only affecting direct children --- frontend/src/ts/controllers/account-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/controllers/account-controller.ts b/frontend/src/ts/controllers/account-controller.ts index 9d2d08c9e..46cfb1411 100644 --- a/frontend/src/ts/controllers/account-controller.ts +++ b/frontend/src/ts/controllers/account-controller.ts @@ -105,7 +105,7 @@ export async function getDataAndInit(): Promise { } LoadingPage.updateText("Applying settings..."); const snapshot = DB.getSnapshot(); - $("#menu .textButton.account .text").text(snapshot.name); + $("#menu .textButton.account > .text").text(snapshot.name); showFavoriteQuoteLength(); ResultFilters.loadTags(snapshot.tags);