diff --git a/src/app/pages/things/channels/details/channels.details.component.html b/src/app/pages/things/channels/details/channels.details.component.html index a2b32232..dd65a2bc 100644 --- a/src/app/pages/things/channels/details/channels.details.component.html +++ b/src/app/pages/things/channels/details/channels.details.component.html @@ -30,13 +30,10 @@ - Raw Messages + Image -
- No messages to display -
-
{{ message | json }}
+
diff --git a/src/app/pages/things/channels/details/channels.details.component.ts b/src/app/pages/things/channels/details/channels.details.component.ts index a0193676..ab23e059 100644 --- a/src/app/pages/things/channels/details/channels.details.component.ts +++ b/src/app/pages/things/channels/details/channels.details.component.ts @@ -25,12 +25,14 @@ export class ChannelsDetailsComponent implements OnInit { selectedThings = []; editorMetadata = ''; + imageWS = 'data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAYAAAC/zKGXAAAAKklEQVR42u3KsQ0AAAgDIL3c0+sLriYw06lMHbQoiqIoiqIoiqIoip/jAtiD+TmYhJoAAAAAAElFTkSuQmC'; constructor( private route: ActivatedRoute, private channelsService: ChannelsService, private messagesService: MessagesService, private notificationsService: NotificationsService, - ) {} + ) { + } ngOnInit() { const chanID = this.route.snapshot.paramMap.get('id');