Skip to content

Commit 32eb99e

Browse files
authored
showing "(auto)" for readonly fields while adding new row (#1692)
1 parent e5dc2e8 commit 32eb99e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/BrowserCell/BrowserCell.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export default class BrowserCell extends Component {
324324
}
325325
}}
326326
>
327-
{content}
327+
{row < 0 ? '(auto)' : content}
328328
</span>
329329
</Tooltip>
330330
) : (

0 commit comments

Comments
 (0)