From c512b1147e0eba54bc1d6c6f3c6a01bc24230b9d Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Wed, 16 Feb 2022 16:21:05 +0800 Subject: [PATCH] Notification: fix "missing key in list" error --- ui/component/notification/view.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/component/notification/view.jsx b/ui/component/notification/view.jsx index 6f6929869..d36be6c63 100644 --- a/ui/component/notification/view.jsx +++ b/ui/component/notification/view.jsx @@ -112,7 +112,9 @@ export default function Notification(props: Props) { let uriIndicator; const title = titleSplit.map((message, index) => { if (channelName === message) { - uriIndicator = ; + uriIndicator = ( + + ); fullTitle.push(' '); const resultTitle = fullTitle; fullTitle = [' '];