Skip to content

Commit

Permalink
fix: Fix the missing action links issue in the route list (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
CH3CHO authored Jan 22, 2024
1 parent ba52a7b commit b644946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/route/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const RouteList: React.FC = () => {
width: 200,
align: 'center',
render: (_, record) => {
routeManagementSupported && (
return routeManagementSupported && (
<Space size="small">
<a onClick={() => onEditConfig(record)}>{t('misc.strategy')}</a>
<a onClick={() => onEditDrawer(record)}>{t('misc.edit')}</a>
Expand Down

0 comments on commit b644946

Please sign in to comment.