Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude the 'Edit Provider Credentials' dropdown menu item for OVA provider #1407

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const ProviderActionsDropdownItems = ({ data }: ProviderActionsDropdownIt
showModal(<DeleteModal resource={provider} model={ProviderModel} />);
};

return [
const dropdownItems = [
<DropdownItemLink key="EditProvider" href={providerURL}>
{t('Edit Provider')}
</DropdownItemLink>,
Expand All @@ -38,6 +38,11 @@ export const ProviderActionsDropdownItems = ({ data }: ProviderActionsDropdownIt
{t('Delete Provider')}
</DropdownItem>,
];

// excluding the EditCredentials options since not supported for OVA
const ovaDropdownItems = dropdownItems.filter((item) => item.key !== 'EditCredentials');

return provider?.spec?.type === 'ova' ? ovaDropdownItems : dropdownItems;
};

interface ProviderActionsDropdownItemsProps {
Expand Down
Loading