Skip to content

Commit b457385

Browse files
committed
fixes issue 408
1 parent 27f6f3c commit b457385

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/components/data-viewer/data-viewer.component.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,11 @@ export class DataViewerComponent implements OnInit, OnChanges {
239239
this.data = this.hashCachedData.slice(start, end);
240240
}
241241
} else if (type === 'string') {
242-
this.stringValue = this.pageData.item.value;
242+
this.loadingPageData = true;
243+
this.redisService.call(instanceId, [['GET', key]]).subscribe(ret => {
244+
this.loadingPageData = false;
245+
this.stringValue = ret[0];
246+
});
243247
}
244248
}
245249

0 commit comments

Comments
 (0)