Skip to content

Commit c9bed04

Browse files
committed
Fix #3460
1 parent d6cedfb commit c9bed04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/components/Looker/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function Looker(props) {
3636

3737
const renderData = () => {
3838
if (property) {
39-
if (lookerData.length > 0) {
39+
if (lookerData.length > 0 && lookerData[0][property]) {
4040
if (typeof lookerData[0][property] === 'string') {
4141
return lookerData[0][property];
4242
}

0 commit comments

Comments
 (0)