aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx b/server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx
index 36b99e6805b..df464f021d5 100644
--- a/server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx
+++ b/server/sonar-web/src/main/js/apps/issues/components/IssueReviewHistory.tsx
@@ -81,15 +81,15 @@ export default function IssueReviewHistory(props: HotspotReviewHistoryProps) {
{history.map((historyElt, historyIndex) => {
const { user, type, diffs, date, html, key, updatable, markdown } = historyElt;
return (
- <li className="sw-p-2 sw-body-sm" key={historyIndex}>
- <div className="sw-body-sm-highlight sw-mb-1">
+ <li className="sw-p-2 sw-typo-default" key={historyIndex}>
+ <div className="sw-typo-semibold sw-mb-1">
<DateTimeFormatter date={date} />
</div>
<LightLabel as="div" className="sw-flex sw-gap-2">
{user.name && (
<div className="sw-flex sw-items-center sw-gap-1">
<Avatar hash={user.avatar} name={user.name} size="xs" />
- <span className="sw-body-sm-highlight">
+ <span className="sw-typo-semibold">
{user.active ? user.name : translateWithParameters('user.x_deleted', user.name)}
</span>
</div>
@@ -113,7 +113,7 @@ export default function IssueReviewHistory(props: HotspotReviewHistoryProps) {
{type === ReviewHistoryType.Comment && key && html && markdown && (
<div className="sw-mt-2 sw-flex sw-justify-between">
<CommentBox
- className="sw-pl-2 sw-ml-2 sw-body-sm"
+ className="sw-pl-2 sw-ml-2 sw-typo-default"
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{ __html: sanitizeUserInput(html) }}
/>