goToDetails(navigation)}
+ style={{ cursor: 'pointer' }}
+ >
+ |
+
+ {navigation.name}
+
+ |
+
+
+ {getLocaleVersions(navigation)
+ .map(({ locale }) => locale)
+ .join(', ')}
+
+ |
+
+
+
+ {navigation.visible
+ ? formatMessage(getTrad('popup.navigation.form.visible.toggle.visible'))
+ : formatMessage(getTrad('popup.navigation.form.visible.toggle.hidden'))}
+
+
+ |
+
+ {navigation.items.length}
+ |
+ event.stopPropagation()}>
+
+ {canUpdate && (
+ setOverlay({ type: 'edit', navigation })}
+ label={formatMessage(getTrad('popup.navigation.manage.button.edit'))}
+ variant="ghost"
+ >
+
+
+ )}
+ {canUpdate && (
+ setOverlay({ type: 'delete', navigation })}
+ label={formatMessage(getTrad('popup.navigation.manage.button.delete'))}
+ variant="ghost"
+ >
+
+
+ )}
+ {canUpdate && hasCache && (
+ setOverlay({ type: 'purge', navigation })}
+ label={formatMessage(getTrad('popup.navigation.manage.button.purge'))}
+ variant="ghost"
+ >
+
+
+ )}
+
+ |
+
+ ))}
+