-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into essntl-5210
- Loading branch information
Showing
18 changed files
with
316 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
150 changes: 75 additions & 75 deletions
150
src/components/GeneralInfo/GeneralInformation/__snapshots__/GeneralInformation.test.js.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
178 changes: 89 additions & 89 deletions
178
src/components/GeneralInfo/SystemCard/__snapshots__/SystemCard.test.js.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { | ||
Button, | ||
Popover, | ||
Text, | ||
TextContent, | ||
TextVariants, | ||
Title, | ||
} from '@patternfly/react-core'; | ||
import { OutlinedQuestionCircleIcon } from '@patternfly/react-icons'; | ||
import React from 'react'; | ||
|
||
const InventoryGroupsPopover = () => ( | ||
<Popover | ||
aria-label="Inventory Groups popover" | ||
headerContent={<Title headingLevel="h4">Inventory groups</Title>} | ||
position="right" | ||
bodyContent={ | ||
<TextContent> | ||
<Text component={TextVariants.p}> | ||
Inventory groups allow you to select specific systems and group them | ||
together to better organize your inventory. | ||
</Text> | ||
<Text component={TextVariants.p}> | ||
You can also manage user access to specific inventory groups to | ||
enhance security within your organization. | ||
</Text> | ||
</TextContent> | ||
} | ||
> | ||
<Button | ||
variant="plain" | ||
aria-label="Open Inventory groups popover" | ||
style={{ padding: 0 }} | ||
> | ||
<OutlinedQuestionCircleIcon /> | ||
</Button> | ||
</Popover> | ||
); | ||
|
||
export default InventoryGroupsPopover; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.