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

Fix a typo in the mapping actions disabled tooltip text #725

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
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 @@ -158,9 +158,9 @@
"Manage Columns": "Manage Columns",
"managed": "managed",
"Managed": "Managed",
"Managed mappings can not be deleted": "Managed mappings can not be deleted",
"Managed mappings can not be edited": "Managed mappings can not be edited",
"Managed resource": "Managed resource",
"Manged mappings can not be deleted": "Manged mappings can not be deleted",
"Manged mappings can not be edited": "Manged mappings can not be edited",
"Map source datastores, storage domains, volume types, storage classes and networks to their respective target storage classes and networks.": "Map source datastores, storage domains, volume types, storage classes and networks to their respective target storage classes and networks.",
"Mapping graph": "Mapping graph",
"Maximum concurrent VM migrations": "Maximum concurrent VM migrations",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function useMappingActions<T extends CommonMapping>({
}),
label: t('Edit Mapping'),
disabled: !canPatch || resourceData.managed,
disabledTooltip: t('Manged mappings can not be edited'),
disabledTooltip: t('Managed mappings can not be edited'),
},
{
id: 'delete',
Expand All @@ -62,7 +62,7 @@ export function useMappingActions<T extends CommonMapping>({
}),
label: t('Delete Mapping'),
disabled: !canDelete || resourceData.managed,
disabledTooltip: t('Manged mappings can not be deleted'),
disabledTooltip: t('Managed mappings can not be deleted'),
},
],
[t, resourceData],
Expand Down