Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 19ce9d7

Browse files
authored
fix: LSDV-5116: Change ground truth color to dark (#1374)
Co-authored-by: juliosgarbi <[email protected]>
1 parent c4b9340 commit 19ce9d7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/CurrentEntity/GroundTruth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const GroundTruth = observer(({ entity, disabled = false, size = 'md' })
2929
<Elem
3030
name="indicator"
3131
tag={isFF(FF_DEV_3873) && !entity.ground_truth ? LsStarOutline : LsStar}
32-
mod={{ active: entity.ground_truth }}
32+
mod={{ active: entity.ground_truth, dark: isFF(FF_DEV_3873) }}
3333
/>
3434
</Elem>
3535
</Tooltip>

src/components/CurrentEntity/GroundTruth.styl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
&__indicator
1414
color rgba(#000, 0.4)
1515

16+
&_dark
17+
color #000
18+
1619
&_active
1720
color #ffbb1a
1821

0 commit comments

Comments
 (0)