aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMathieu Suen <59278745+mathieu-suen-sonarsource@users.noreply.github.com>2024-05-15 14:16:06 +0200
committersonartech <sonartech@sonarsource.com>2024-05-15 20:02:46 +0000
commitbfe472048fbf352710a75521ca5390436488144e (patch)
treec721064bdb8e99d94e4d1eb418984f1b2ddfa553 /server
parent9d1372bb88bac438dbe2166d88d3577c4213bbdf (diff)
downloadsonarqube-bfe472048fbf352710a75521ca5390436488144e.tar.gz
sonarqube-bfe472048fbf352710a75521ca5390436488144e.zip
SONAR-22164 Align issue location navigation text left (#11124)
Diffstat (limited to 'server')
-rw-r--r--server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx b/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx
index a1d910f2eb5..61c41a0a45e 100644
--- a/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx
+++ b/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx
@@ -57,7 +57,7 @@ export default function IssueLocation(props: Readonly<Props>) {
return (
<StyledButton aria-label={normalizedMessage} aria-current={selected} onClick={handleClick}>
<StyledLocation
- className={classNames('sw-p-1 sw-rounded-1/2 sw-flex sw-gap-2 sw-body-sm', {
+ className={classNames('sw-p-1 sw-rounded-1/2 sw-flex sw-gap-2 sw-body-sm sw-text-left', {
selected,
})}
ref={(n) => (node.current = n)}