Skip to content

Commit 35e2056

Browse files
committed
fix broken urls
1 parent a71c3ec commit 35e2056

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

packages/react-core/src/deprecated/components/Modal/examples/Modal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ To guide users through a series of steps in a modal, you can add a [wizard](/com
127127

128128
### With dropdown
129129

130-
To present a menu of actions or links to a user, you can add a [dropdown](/components/dropdown) to a modal. To allow the dropdown to visually break out of the modal container, set the `menuAppendTo` property to “parent”. Handle the modal’s closing behavior by listening to the `onEscapePress` callback on the `<Modal>` component. This allows the "escape" key to collapse the dropdown without closing the entire modal.
130+
To present a menu of actions or links to a user, you can add a [dropdown](/components/menus/dropdown) to a modal. To allow the dropdown to visually break out of the modal container, set the `menuAppendTo` property to “parent”. Handle the modal’s closing behavior by listening to the `onEscapePress` callback on the `<Modal>` component. This allows the "escape" key to collapse the dropdown without closing the entire modal.
131131

132132
```ts file="./ModalWithDropdown.tsx"
133133

@@ -143,7 +143,7 @@ To help simplify and explain complex models, add a help [popover](/components/po
143143

144144
### With form
145145

146-
To collect user input within a modal, you can add a [form](/components/form).
146+
To collect user input within a modal, you can add a [form](/components/forms/form).
147147

148148
To submit the form from a button in the modal's footer (outside of the `<Form>`), set the button's `form` property equal to the form's id.
149149

packages/react-core/src/deprecated/components/Tile/examples/Tile.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ import './Tile.css';
1515

1616
## Examples
1717

18-
Keyboard interaction patterns and a11y is implemented in the Tile demos, located in the [Demo section](/components/tile/react-demos).
19-
2018
### Basic tile
2119

2220
Basic tiles can appear in one of three states: a default state, selected state, and a disabled state. To change the state of a tile, use the properties `isSelected` and `isDisabled`.

packages/react-core/src/helpers/OUIA/OUIA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ component.
5454
* [Card](/components/card)
5555
* [Checkbox](/components/forms/checkbox)
5656
* [Chip](/components/chip)
57+
* [Content](/components/content)
5758
* [Dropdown](/components/menus/dropdown)
5859
* [DropdownItem](/components/menus/dropdown)
5960
* [FormSelect](/components/forms/form-select)
@@ -68,7 +69,6 @@ component.
6869
* [Switch](/components/switch)
6970
* [TabContent](/components/tabs)
7071
* [Tabs](/components/tabs)
71-
* [Text](/components/text)
7272
* [TextInput](/components/forms/text-input)
7373
* [Title](/components/title)
7474
* [Toolbar](/components/toolbar)

0 commit comments

Comments
 (0)