Skip to content

Commit

Permalink
Fix links to configure skills inside Home Assistant
Browse files Browse the repository at this point in the history
  • Loading branch information
gcampax committed Jul 2, 2021
1 parent a842463 commit 2bbcf08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/javascripts/conversation.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ $(() => {

var holder = $('<div>').addClass('col-xs-12 col-sm-6');
var btn = $('<a>').addClass('message message-button new-msg-button btn btn-default')
.attr('href', url).attr("target", "_blank").attr("rel", "noopener").text(title);
.attr('href', baseUrl + url).attr("target", "_blank").attr("rel", "noopener").text(title);
holder.append(btn);
getGrid().append(holder);
maybeScroll(holder);
Expand Down

0 comments on commit 2bbcf08

Please sign in to comment.