Skip to content

Commit 8c6341b

Browse files
[DDW-992] Fix position of popup on syncing screen
1 parent 3c981a7 commit 8c6341b

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

source/renderer/app/components/loading/syncing-connecting/SyncingProgress/SyncingProgress.tsx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,18 @@ const SyncingProgress: FC<Props> = (props, { intl }: Context) => (
5858
<span className={makeMainMessageStyles(props[type] === 100)}>
5959
{intl.formatMessage(getProgressNameByBlockSyncType(type))}
6060
</span>
61-
<PopOver
62-
content={intl.formatMessage(
63-
getProgressDescriptionByBlockSyncType(type)
64-
)}
65-
>
66-
<SVGInline
67-
svg={questionMarkIcon}
68-
className={questionMarkIconStyles}
69-
/>
70-
</PopOver>
61+
<span>
62+
<PopOver
63+
content={intl.formatMessage(
64+
getProgressDescriptionByBlockSyncType(type)
65+
)}
66+
>
67+
<SVGInline
68+
svg={questionMarkIcon}
69+
className={questionMarkIconStyles}
70+
/>
71+
</PopOver>
72+
</span>
7173
</div>
7274
))}
7375
</div>

0 commit comments

Comments
 (0)