diff --git a/apps/desktop/layer/renderer/src/modules/app-layout/entry-column/mobile.tsx b/apps/desktop/layer/renderer/src/modules/app-layout/entry-column/mobile.tsx index e0d5f7808..b55807b97 100644 --- a/apps/desktop/layer/renderer/src/modules/app-layout/entry-column/mobile.tsx +++ b/apps/desktop/layer/renderer/src/modules/app-layout/entry-column/mobile.tsx @@ -35,7 +35,11 @@ export const EntryColumnMobile = () => { { - ;(document.querySelector(`#${LOGO_MOBILE_ID}`) as HTMLElement)?.click() + const logo = document.querySelector(`#${LOGO_MOBILE_ID}`) as HTMLElement + if (logo) { + logo.click() + logo.blur() + } }} onViewChange={(view) => { navigateEntry({ diff --git a/apps/desktop/layer/renderer/src/modules/app-layout/feed-column/float-bar.mobile.tsx b/apps/desktop/layer/renderer/src/modules/app-layout/feed-column/float-bar.mobile.tsx index 50611c47f..1d011dcd8 100644 --- a/apps/desktop/layer/renderer/src/modules/app-layout/feed-column/float-bar.mobile.tsx +++ b/apps/desktop/layer/renderer/src/modules/app-layout/feed-column/float-bar.mobile.tsx @@ -73,24 +73,28 @@ export const MobileFloatBar = ({ return (
- - +
+ + +
- - +
+ + +
) @@ -102,7 +106,7 @@ const ViewTabs = ({ onViewChange }: { onViewChange?: (view: number) => void }) = return (
{views.map((item) => ( diff --git a/apps/desktop/layer/renderer/src/modules/entry-column/layouts/EntryListHeader.mobile.tsx b/apps/desktop/layer/renderer/src/modules/entry-column/layouts/EntryListHeader.mobile.tsx index 6e09e42a1..372d128dd 100644 --- a/apps/desktop/layer/renderer/src/modules/entry-column/layouts/EntryListHeader.mobile.tsx +++ b/apps/desktop/layer/renderer/src/modules/entry-column/layouts/EntryListHeader.mobile.tsx @@ -163,7 +163,7 @@ const FollowSubscriptionButton = () => { diff --git a/packages/internal/components/src/ui/button/action-button.tsx b/packages/internal/components/src/ui/button/action-button.tsx index c36a324b9..853f21a32 100644 --- a/packages/internal/components/src/ui/button/action-button.tsx +++ b/packages/internal/components/src/ui/button/action-button.tsx @@ -116,6 +116,7 @@ export const ActionButton = ({ } : void 0 } + id={id} {...rest} > {loading ? (