Skip to content

Commit 38fc0ed

Browse files
authored
Merge pull request #2921 from input-output-hk/feature/ddw-992
2 parents 43d4622 + e1b0a97 commit 38fc0ed

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
### Fixes
1414

15+
- Fixed position of popup on syncing screen ([PR 2921](https://github.com/input-output-hk/daedalus/pull/2921))
1516
- Fixed issue with missing character when copying address from PDF ([PR 2925](https://github.com/input-output-hk/daedalus/pull/2925))
1617
- Fixed stake pool list view overlapping news feed ([PR 2917](https://github.com/input-output-hk/daedalus/pull/2917))
1718
- Restored opacity for search icon when focused ([PR 2909](https://github.com/input-output-hk/daedalus/pull/2909))

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>

source/renderer/app/i18n/locales/ja-JP.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@
11871187
"wallet.summary.transactionsList.syncingTransactionsMessage": "ウォレットのトランザクション履歴は現在ブロックチェーンと同期中です。",
11881188
"wallet.summary.transactionsList.todayLabel": "今日",
11891189
"wallet.summary.transactionsList.yesterdayLabel": "昨日",
1190-
"wallet.token.picker.addButtonLabel": "キャンセル",
1190+
"wallet.token.picker.addButtonLabel": "追加する",
11911191
"wallet.token.picker.allTokensLabel": "すべてのトークン",
11921192
"wallet.token.picker.cancelButtonLabel": "キャンセル",
11931193
"wallet.token.picker.checkAllLabel": "すべてを選択",

0 commit comments

Comments
 (0)