Skip to content

Commit

Permalink
Updated docs, resolved warning on build
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye committed Jul 2, 2024
1 parent 617c8d3 commit 02aa4f2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react-core/src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface DropdownPopperProps {
maxWidth?: string | 'trigger';
/** Enable to flip the popper when it reaches the boundary */
enableFlip?: boolean;
/** The container to append the popper to. Defaults to 'inline'. */
/** The container to append the popper to. Defaults to document.body. */
appendTo?: HTMLElement | (() => HTMLElement) | 'inline';
/** Flag to prevent the popper from overflowing its container and becoming partially obscured. */
preventOverflow?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface SelectPopperProps {
maxWidth?: string | 'trigger';
/** Enable to flip the popper when it reaches the boundary */
enableFlip?: boolean;
/** The container to append the select to. Defaults to 'inline'.
/** The container to append the select to. Defaults to document.body.
* If your select is being cut off you can append it to an element higher up the DOM tree.
* Some examples:
* appendTo="inline"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ DualListSelectorListItem as DLSListItemDeprecated,
DualListSelectorControlsWrapper as DLSControlsWrapperDeprecated,
DualListSelectorControl as DLSControlDeprecated,
DualListSelectorTree as DLSTreeDeprecated,
DualListSelectorTreeItemData as DLSTreeItemDataDeprecated,
} from '@patternfly/react-core/deprecated';
import AngleDoubleLeftIcon from '@patternfly/react-icons/dist/esm/icons/angle-double-left-icon';
import AngleLeftIcon from '@patternfly/react-icons/dist/esm/icons/angle-left-icon';
Expand Down

0 comments on commit 02aa4f2

Please sign in to comment.