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 8e2c43e44ee11..78eb982a95dd7 100644
--- a/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js
+++ b/x-pack/plugins/monitoring/public/components/logstash/listing/listing.js
@@ -62,7 +62,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 1b22bc6823bb8..4cacf91913ab9 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
@@ -46,7 +46,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}`
);
};
}