Skip to content

Commit 1351359

Browse files
committed
Fix broken Storybook links after reorganizing them into groups
1 parent 59c6f7a commit 1351359

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

content/collections/pages/building-a-widget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ defineProps(['message']);
5252
</template>
5353
```
5454

55-
The [`<Widget>`](/ui-components/widget) component requires a `title` prop, along with optional `icon` and `href` props. You also pass an `actions` slot to render content in the top right of the widget.
55+
The `<Widget>` component requires a `title` prop, along with optional `icon` and `href` props. You also pass an `actions` slot to render content in the top right of the widget.
5656

5757
If you'd prefer to create your widget using Blade, simply pass the `--blade` argument to the `make:widget` command.
5858

content/collections/pages/vue-2-to-3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ export default function (tiptap) {
406406

407407
## Component Substitutions
408408

409-
With the introduction of the [UI component library](/ui-components), a number of components have been replaced by more modern versions.
409+
With the introduction of the [UI component library](https://ui.statamic.dev), a number of components have been replaced by more modern versions.
410410

411411
### Publish
412412

@@ -558,7 +558,7 @@ You can also forgo the imports and just use `ui-dropdown`, `ui-dropdown-menu`, a
558558

559559
### Inputs
560560

561-
Input components such as `<text-input>`, `<textarea-input>`, `<select-input>`, and `<toggle-input>` have been removed in favor of [Input](/ui-components/input), [Textarea](/ui-components/textarea), [Combobox](/ui-components/combobox), [Switch](/ui-components/switch) UI components respectively.
561+
Input components such as `<text-input>`, `<textarea-input>`, `<select-input>`, and `<toggle-input>` have been removed in favor of [Input](https://ui.statamic.dev/?path=/docs/forms-input--docs), [Textarea](https://ui.statamic.dev/?path=/docs/forms-textarea--docs), [Combobox](https://ui.statamic.dev/?path=/docs/forms-combobox--docs), [Switch](https://ui.statamic.dev/?path=/docs/forms-switch--docs) UI components respectively.
562562

563563
```vue
564564
<script>

routes/web.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,4 @@
2626
return redirect()->to($entry->url());
2727
});
2828

29-
Route::get('ui-components/{component}', function ($component) {
30-
return redirect()->to('https://ui.statamic.dev/?path=/docs/components-'.$component);
31-
})->where('component', '(?!all-ui-components|overview).*');
32-
3329
require __DIR__.'/redirects.php';

0 commit comments

Comments
 (0)