Skip to content

Commit

Permalink
Provider file generator: Add text break for properties hint
Browse files Browse the repository at this point in the history
  • Loading branch information
cal0pteryx authored Jun 21, 2024
1 parent 84f2824 commit cab2d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/xmpp-providers/static/js/provider-file-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ function _update_properties_warning_alert(warnings) {
const ul = document.createElement("ul")
for (const item of warnings) {
const li = document.createElement("li")
li.innerHTML = `<b>${item}</b>`
li.innerHTML = `<b class="text-break">${item}</b>`
ul.append(li)
}
properties_warning_container.append(warning_span)
Expand Down

0 comments on commit cab2d19

Please sign in to comment.