diff --git a/src/ui/components/data-inspector/DataDescription.tsx b/src/ui/components/data-inspector/DataDescription.tsx
index a33dcd66d..d56c23e27 100644
--- a/src/ui/components/data-inspector/DataDescription.tsx
+++ b/src/ui/components/data-inspector/DataDescription.tsx
@@ -17,6 +17,7 @@ import Popover from '../Popover';
import {colors} from '../colors';
import Input from '../Input';
import React, {KeyboardEvent} from 'react';
+import Glyph from '../Glyph';
const NullValue = styled.span({
color: 'rgb(128, 128, 128)',
@@ -595,7 +596,18 @@ class DataDescriptionContainer extends Component<{
case 'text':
case 'string':
if (val.startsWith('http://') || val.startsWith('https://')) {
- return {val};
+ return (
+ <>
+ {val}
+
+ >
+ );
} else {
return "{String(val || '')}";
}
diff --git a/static/icons.json b/static/icons.json
index 2f941851d..76f540827 100644
--- a/static/icons.json
+++ b/static/icons.json
@@ -318,5 +318,8 @@
],
"card-person": [
12
+ ],
+ "pencil-outline": [
+ 16
]
}
\ No newline at end of file