diff --git a/Common/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx b/Common/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx index cb8bf69ce5..4bdf249f42 100644 --- a/Common/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx +++ b/Common/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx @@ -47,35 +47,26 @@ const DictionaryOfStringsViewer: FunctionComponent = ( } return ( -
- - - - - - - - - {data.map((item: Item, index: number) => { - return ( - - - - - ); - })} - -
- Key - - Value -
- {item.key} - - {item.value || ( - empty - )} -
+
+
+ {data.map((item: Item, index: number) => { + return ( +
+ + {item.key} + + + {item.value || ( + empty + )} + +
+ ); + })} +
); };