Skip to content

Commit

Permalink
bug(ui): fix incomplete drop-down resource acctions (#11384)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Eftimie <alex.eftimie@getyourguide.com>
  • Loading branch information
alexef committed Nov 21, 2022
1 parent a259654 commit 967999d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/applications/components/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ function getActionItems(
})
.catch(() => [] as MenuItem[]);

const resourceActions = getResourceActionsMenuItems(resource, application, appContext);
const resourceActions = getResourceActionsMenuItems(resource, application.metadata, appContext);

return combineLatest(
from([items]), // this resolves immediately
Expand Down

0 comments on commit 967999d

Please sign in to comment.