diff --git a/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js b/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js
index b22cbfbc84de7..18158f8838edd 100644
--- a/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js
+++ b/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js
@@ -54,7 +54,7 @@ export class Listing extends PureComponent {
return (
-
+
{name}
diff --git a/x-pack/plugins/monitoring/public/components/logstash/pipeline_listing/pipeline_listing.js b/x-pack/plugins/monitoring/public/components/logstash/pipeline_listing/pipeline_listing.js
index af181fb2a674d..10e16ce61feef 100644
--- a/x-pack/plugins/monitoring/public/components/logstash/pipeline_listing/pipeline_listing.js
+++ b/x-pack/plugins/monitoring/public/components/logstash/pipeline_listing/pipeline_listing.js
@@ -44,7 +44,7 @@ export class PipelineListing extends Component {
field: 'id',
sortable: true,
render: (id) => (
-
+
{id}
),
diff --git a/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js b/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js
index bef0fce4cd088..ec325673ddfda 100644
--- a/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js
+++ b/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js
@@ -72,7 +72,9 @@ const getColumns = () => [
render: (name, node) => {
if (node) {
return (
- {name}
+
+ {name}
+
);
}
diff --git a/x-pack/plugins/monitoring/public/directives/main/index.js b/x-pack/plugins/monitoring/public/directives/main/index.js
index 97ec66c9b3415..eda32cd39c0d0 100644
--- a/x-pack/plugins/monitoring/public/directives/main/index.js
+++ b/x-pack/plugins/monitoring/public/directives/main/index.js
@@ -133,7 +133,7 @@ export class MonitoringMainController {
this.pipelineHashShort = shortenPipelineHash(this.pipelineHash);
this.onChangePipelineHash = () => {
window.location.hash = getSafeForExternalLink(
- `/logstash/pipelines/${this.pipelineId}/${this.pipelineHash}`
+ `#/logstash/pipelines/${this.pipelineId}/${this.pipelineHash}`
);
};
}