Skip to content

Commit 2ff9465

Browse files
authored
Fix invalid closing link (#47)
Fixes #39
1 parent a5c7f4d commit 2ff9465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/helpers/getTryItNow.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ module.exports = function (value, options) {
1414
const variablesQuery = variables ? `&variables=${encodeURIComponent(variables)}` : ""
1515

1616
var url = `${options.data.root.servers[0].url}?query=${encodeURIComponent(query)}${variablesQuery}`;
17-
return new Handlebars.SafeString(`<a href="${url}" target="_blank">Try it now<a/>\n`);
18-
}
17+
return new Handlebars.SafeString(`<a href="${url}" target="_blank">Try it now</a>\n`);
18+
}

0 commit comments

Comments
 (0)