Skip to content

Commit

Permalink
Fix: add missing ending quote for css image uri #1385
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Dec 5, 2024
1 parent 6d44be8 commit 3067ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/images.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function getImageUri(uri) {
* @returns {string} absolute image uri
*/
function getCssImageUri(uri) {
return 'url("' + getImageUri(uri) + ')';
return 'url("' + getImageUri(uri) + '")';
}

/**
Expand Down

0 comments on commit 3067ba6

Please sign in to comment.