Skip to content
Snippets Groups Projects
Commit bdf95678 authored by Dorian Goepp's avatar Dorian Goepp
Browse files

Merge branch 'dgoepp/fix#1' into 'master'

fix a tiny bug in Video Stream

See merge request behaviors-ai/the_dashboard!8
parents 2280357f 60059b71
No related branches found
No related tags found
No related merge requests found
...@@ -42,13 +42,13 @@ class VideoStream extends Component { ...@@ -42,13 +42,13 @@ class VideoStream extends Component {
this.store = new VideoStore(); this.store = new VideoStore();
// Automatically detect if the configured topic name is valid
this.hasTopic = observable.box(false);
this.searchForTopic()
// Fill the undefined fields of the configuration object with their default values. // Fill the undefined fields of the configuration object with their default values.
defaultConfig(this.store); defaultConfig(this.store);
this.props.store.components['video'] = this.store; this.props.store.components['video'] = this.store;
// Automatically detect if the configured topic name is valid
this.hasTopic = observable.box(false);
this.searchForTopic();
} }
defaultImage = 'images/default.svg'; defaultImage = 'images/default.svg';
...@@ -93,14 +93,13 @@ class VideoStream extends Component { ...@@ -93,14 +93,13 @@ class VideoStream extends Component {
console.warn("[VideoStream] The required topic " console.warn("[VideoStream] The required topic "
+ this.store.config.topic + " is not published"); + this.store.config.topic + " is not published");
} }
console.debug(this.hasTopic.get());
}) })
} else { } else {
console.warn("[VideoStream] either no topic is configured " console.warn("[VideoStream] either no topic is configured "
+ "or no host is configured. This should never " + "or no host is configured. This should never "
+ "happen at runtime. Contact the developpers."); + "happen at runtime. Contact the developpers.");
} }
}) }, {fireImmediately: true})
} else { } else {
console.warn("[VideoStream] ROS property is provided. This should " console.warn("[VideoStream] ROS property is provided. This should "
+ "never happen at runtime. Contact the developpers."); + "never happen at runtime. Contact the developpers.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment