fix: Update navigation items in MainLayout to display all available links instead of limiting to the first five
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 8m12s

This commit is contained in:
2025-07-16 12:09:17 +07:00
parent 04766bd005
commit 9df5f577d9
+1 -1
View File
@@ -78,7 +78,7 @@ function MainLayout() {
<span className="fw-bold">S3 Lists Manager</span>
</Link>
<nav className="nav nav-tabs ms-4">
{navItems.slice(0, 5).map(item => (
{navItems.map(item => (
<Link
key={item.id}
to={item.path}