if type === "img"', function () {
const url = new Url({ type: 'img' });
diff --git a/src/ui/public/stringify/editors/url.html b/src/ui/public/stringify/editors/url.html
index 5143fce2aae1..259143893cbe 100644
--- a/src/ui/public/stringify/editors/url.html
+++ b/src/ui/public/stringify/editors/url.html
@@ -7,6 +7,13 @@
+
+
+
+
Url Template Help
@@ -119,6 +126,7 @@
+
diff --git a/src/ui/public/stringify/types/url.js b/src/ui/public/stringify/types/url.js
index 08543b8bfe57..95c6ea2675e3 100644
--- a/src/ui/public/stringify/types/url.js
+++ b/src/ui/public/stringify/types/url.js
@@ -110,7 +110,9 @@ export function stringifyUrl(Private) {
linkLabel = label;
}
- return `${linkLabel}`;
+ let linkTarget = this.param('openLinkInCurrentTab') ? '_self' : '_blank';
+
+ return `${linkLabel}`;
}
}
};