Skip to content

Commit

Permalink
fix: missing styles for some reports components
Browse files Browse the repository at this point in the history
Refs: #35
  • Loading branch information
Jumas committed Jul 1, 2024
1 parent b7d702a commit d7ac171
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ String getCssContent(
String content = placeholderProcessor.replacePlaceholders(documentData, exportParams, css);
String processed = velocityEvaluator.evaluateVelocityExpressions(documentData, content);

return (exportParams.getDocumentType() == DocumentType.WIKI) ? appendWikiCss(processed) : processed;
return (exportParams.getDocumentType() != DocumentType.DOCUMENT) ? appendWikiCss(processed) : processed;
}

@VisibleForTesting
Expand Down

0 comments on commit d7ac171

Please sign in to comment.