You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "Object Detail" page, in the fields table, open a dropdown when the "three dots" icon button of a row is clicked.
Add the following menu items to the dropdowns:
For "Active" field rows:
"Edit" for custom fields OR "View" for standard fields: Clicking on this menu item navigates to the "Object Field Edit" page (/settings/objects/[PLURAL_OBJECT_NAME]/[FIELD_NAME])
"Disable": Clicking on this menu item disables the field (use useUpdateOneMetadataField to set isActive to false).
For "Disabled" field rows:
"Activate": Clicking on this menu item activates the field (use useUpdateOneMetadataField to set isActive to true).
"Erase" for custom fields only: Clicking on this menu item deletes the field (use useDeleteOneMetadataField).
GIVEN I am on the "Object Detail" page WHEN I open an active custom field row dropdown THEN I see an "Edit" and "Disable" menu items
GIVEN I am on the "Object Detail" page WHEN I open an active standard field row dropdown THEN I see a "View" and "Disable" menu items
GIVEN I am on the "Object Detail" page WHEN I open an active field row dropdown AND I click on the "Edit" or "View" menu item THEN I navigate to the "Object Field Edit" page
GIVEN I am on the "Object Detail" page WHEN I open an active field row dropdown AND I click on the "Disable" menu item THEN the field is disabled
GIVEN I am on the "Object Detail" page WHEN I open an disabled custom field row dropdown THEN I see an "Activate" and "Erase" menu items
GIVEN I am on the "Object Detail" page WHEN I open an disabled standard field row dropdown THEN I see an "Activate" menu item
GIVEN I am on the "Object Detail" page WHEN I open a disabled field row dropdown AND I click on the "Activate" menu item THEN the field is enabled
GIVEN I am on the "Object Detail" page WHEN I open a disabled custom field row dropdown AND I click on the "Erase" menu item THEN the field is deleted
The text was updated successfully, but these errors were encountered:
Context
See #1765 and #1769
For this issue:
/settings/objects/[PLURAL_OBJECT_NAME]/[FIELD_NAME]
)useUpdateOneMetadataField
to setisActive
to false).useUpdateOneMetadataField
to setisActive
to true).useDeleteOneMetadataField
).Figma
https://www.figma.com/file/xt8O9mFeLl46C5InWwoMrN/Twenty?type=design&node-id=11336%3A63490&mode=design&t=EynOEhEsP06qxkYt-1
Active - Custom
Active - Standard
Disabled - Custom
Behavior
GIVEN I am on the "Object Detail" page
WHEN I open an active custom field row dropdown
THEN I see an "Edit" and "Disable" menu items
GIVEN I am on the "Object Detail" page
WHEN I open an active standard field row dropdown
THEN I see a "View" and "Disable" menu items
GIVEN I am on the "Object Detail" page
WHEN I open an active field row dropdown
AND I click on the "Edit" or "View" menu item
THEN I navigate to the "Object Field Edit" page
GIVEN I am on the "Object Detail" page
WHEN I open an active field row dropdown
AND I click on the "Disable" menu item
THEN the field is disabled
GIVEN I am on the "Object Detail" page
WHEN I open an disabled custom field row dropdown
THEN I see an "Activate" and "Erase" menu items
GIVEN I am on the "Object Detail" page
WHEN I open an disabled standard field row dropdown
THEN I see an "Activate" menu item
GIVEN I am on the "Object Detail" page
WHEN I open a disabled field row dropdown
AND I click on the "Activate" menu item
THEN the field is enabled
GIVEN I am on the "Object Detail" page
WHEN I open a disabled custom field row dropdown
AND I click on the "Erase" menu item
THEN the field is deleted
The text was updated successfully, but these errors were encountered: