Skip to content

Commit 0a87149

Browse files
committed
feat: missed graphicsInputIcon in last commit
1 parent 3c4a4fa commit 0a87149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/webui/src/client/ui/PieceIcons/Renderers/GraphicsInputIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class GraphicsInputIcon extends React.Component<{ abbreviation?:
1313
xmlSpace="preserve"
1414
>
1515
<tspan lengthAdjust="spacing" className="label">
16-
{this.props.abbreviation ? this.props.abbreviation : 'G'}
16+
{this.props.abbreviation !== undefined ? this.props.abbreviation : 'G'}
1717
</tspan>
1818
</text>
1919
</svg>

0 commit comments

Comments
 (0)