Removed drag grip and accent is now tertiary in hidden fields (#6650)

Closes #6115

This change successfully addresses the issue as described. However, it
also causes the primary non-draggable field, `Name`, to render without a
draggable handle and with a secondary accent. Is this an acceptable
outcome?



https://github.com/user-attachments/assets/4bc15e00-6c73-41d4-8342-4e36487d0981

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
nitin
2024-08-28 20:57:14 +05:30
committed by GitHub
parent 747a1549e9
commit 0531eb5015
5 changed files with 43 additions and 30 deletions

View File

@ -182,6 +182,7 @@ export const RecordIndexOptionsDropdownContent = ({
onDragEnd={handleReorderFields}
onVisibilityChange={handleChangeFieldVisibility}
showSubheader={false}
showDragGrip={true}
/>
<DropdownMenuSeparator />
<DropdownMenuItemsContainer>
@ -209,6 +210,7 @@ export const RecordIndexOptionsDropdownContent = ({
isDraggable={false}
onVisibilityChange={handleChangeFieldVisibility}
showSubheader={false}
showDragGrip={false}
/>
</>
)}