mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
BIG-23|BIG-24: fix add missing hint on selling/cost account on item form.
This commit is contained in:
@@ -10,11 +10,12 @@ import 'style/components/Hint.scss';
|
||||
export default function FieldHint({
|
||||
content,
|
||||
position,
|
||||
iconSize = 12
|
||||
iconSize = 12,
|
||||
tooltipProps
|
||||
}) {
|
||||
return (
|
||||
<span class="hint">
|
||||
<Tooltip content={content} position={position}>
|
||||
<Tooltip content={content} position={position} { ...tooltipProps }>
|
||||
<Icon icon="info-circle" iconSize={iconSize} />
|
||||
</Tooltip>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user