style: auto-fix linting issues
This commit is contained in:
parent
91d69b4e1a
commit
9d1e957f54
1 changed files with 3 additions and 1 deletions
4
js/ui.js
4
js/ui.js
|
|
@ -3907,7 +3907,9 @@ export class UIRenderer {
|
|||
reviewdiv.style.paddingBottom = '1rem';
|
||||
reviewdiv.style.borderBottom = '1px solid var(--border)';
|
||||
|
||||
const publication = decodeHtml(review.publication || review.source || 'Unknown Publication');
|
||||
const publication = decodeHtml(
|
||||
review.publication || review.source || 'Unknown Publication'
|
||||
);
|
||||
const author = decodeHtml(review.author || '');
|
||||
const quote = decodeHtml(review.text || review.quote || 'No review text available.');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue