Fixing warnings from rebase

This commit is contained in:
John Westcott IV 2022-09-16 06:44:43 -04:00
parent 420b3c8b84
commit a95a76ec56
2 changed files with 2 additions and 5 deletions

View File

@ -57,8 +57,7 @@ function InventoryDetail({ inventory }) {
const { organization, user_capabilities: userCapabilities } =
inventory.summary_fields;
const prevent_instance_group_fallback =
inventory.prevent_instance_group_fallback;
const { prevent_instance_group_fallback } = inventory;
const deleteDetailsRequests =
relatedResourceDeleteRequests.inventory(inventory);

View File

@ -194,9 +194,7 @@ const getInventoryHelpTextStrings = () => ({
preventInstanceGroupFallback: t`If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.
Note: If this setting is enabled and you provided an empty list, the global instance groups will be applied.`,
enabledOptions: (
<>
<p>{t`Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.`}</p>
</>
<p>{t`Prevent Instance Group Fallback: If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.`}</p>
),
});