Skip to content

Commit 4d0216a

Browse files
committed
Added missing pagination
1 parent c4c5bf3 commit 4d0216a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/pages/developing-extensions/Custom-web-routes.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,9 @@ Route::get('/data', [ExtensionDashboardController::class, 'getData']);
105105
<div class="alert mt-2 rounded-4 border" role="alert">
106106
<i class="bi bi-globe mb-1 float-start fs-4"></i>
107107
<div class="ps-3 ms-3">For detailed route configuration, visit the <a href="https://laravel.com/docs/10.x/routing">Laravel routing documentation</a>.</div>
108-
</div><br/>
108+
</div><br/>
109+
110+
<div class="btn-group docs-navigator" role="group" aria-label="Navigation" style="float: right">
111+
<a href="?page=developing-extensions/React-components" class="btn btn-dark bg-light-subtle border-0 rounded-start-pill">Previous</a>
112+
<a href="?page=developing-extensions/Packaging-extensions" class="btn btn-dark bg-light-subtle border-0 rounded-end-pill">Next</a>
113+
</div>

docs/pages/developing-extensions/Packaging-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ To package an extension for distribution, we need to convert it into a `identifi
3838
After running one of these commands, you'll be left with a `identifier.blueprint` file which you can in turn use to distribute your extension to the outside world.
3939

4040
<div class="btn-group docs-navigator" role="group" aria-label="Navigation" style="float: right">
41-
<a href="?page=developing-extensions/React-components" class="btn btn-dark bg-light-subtle border-0 rounded-start-pill">Previous</a>
41+
<a href="?page=developing-extensions/Custom-web-routes" class="btn btn-dark bg-light-subtle border-0 rounded-start-pill">Previous</a>
4242
<button type="button" class="btn btn-dark bg-light-subtle border-0 text-secondary rounded-end-pill disabled">Next</button>
4343
</div>

docs/pages/developing-extensions/React-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ With the code mentioned above, you've added the `Content.tsx` component into the
9191

9292
<div class="btn-group docs-navigator" role="group" aria-label="Navigation" style="float: right">
9393
<a href="?page=developing-extensions/Dashboard-wrappers" class="btn btn-dark bg-light-subtle border-0 rounded-start-pill">Previous</a>
94-
<a href="?page=developing-extensions/Packaging-extensions" class="btn btn-dark bg-light-subtle border-0 rounded-end-pill">Next</a>
94+
<a href="?page=developing-extensions/Custom-web-routes" class="btn btn-dark bg-light-subtle border-0 rounded-end-pill">Next</a>
9595
</div>

0 commit comments

Comments
 (0)