Skip to content

Commit 8ab39a2

Browse files
authored
showing '(auto)' for new rows for auto generated fields (#254)
1 parent 9d64d2b commit 8ab39a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/BrowserCell/BrowserCell.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class BrowserCell extends Component {
322322
this.setState({ showTooltip: false });
323323
}, 2000);
324324
}}>
325-
{content}
325+
{row < 0 ? '(auto)' : content}
326326
</span>
327327
</Tooltip> :
328328
<span

0 commit comments

Comments
 (0)