Add primary key icon to fields

This commit is contained in:
1ilit 2024-04-02 00:22:07 +03:00
parent 1283dcd946
commit 6fda5356b0

View File

@ -1351,7 +1351,10 @@ export default function Table(props) {
}} }}
/> />
) : ( ) : (
fieldData.type <div className="flex gap-1 items-center">
{fieldData.primary && <IconKeyStroked />}
<span>{fieldData.type}</span>
</div>
)} )}
</div> </div>
</div> </div>