Skip to content

Commit

Permalink
fix(nd): rect vis
Browse files Browse the repository at this point in the history
  • Loading branch information
tracernz committed Dec 21, 2022
1 parent 3a1caad commit 7db3ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instruments/src/ND/elements/TopMessages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type TrueFlagProps = {

const TrueFlag: React.FC<TrueFlagProps> = ({ xOffset = 0, box }) => (
<>
<rect x={-30 + xOffset} width={60} y={-20} height={22} className="Cyan" strokeWidth={1.5} visibility={box ? 'visible' : 'hidden'} />
<rect x={-30 + xOffset} width={60} y={-20} height={22} className="Cyan" strokeWidth={1.5} visibility={box ? 'inherit' : 'hidden'} />
<text x={xOffset} fontSize={22} className="Cyan" textAnchor="middle">TRUE</text>
</>
);
Expand Down

0 comments on commit 7db3ba6

Please sign in to comment.