Fixed not shown icons when sidebar is closed
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m8s
Production Build and Deploy / Deploy (push) Successful in 23s

This commit is contained in:
Liviu Burcusel 2026-01-17 10:57:26 +01:00
parent 97154f46d0
commit 64781d67c2
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
3 changed files with 7 additions and 6 deletions

View file

@ -89,6 +89,7 @@ interface NavItem {
interface SidebarLayoutProps extends /* @vue-ignore */ SidebarProps { interface SidebarLayoutProps extends /* @vue-ignore */ SidebarProps {
navItems?: NavItem[]; navItems?: NavItem[];
user?: User | null | undefined; user?: User | null | undefined;
collapsible?: "offcanvas" | "icon" | "none" | undefined;
} }
const props = withDefaults(defineProps<SidebarLayoutProps>(), { const props = withDefaults(defineProps<SidebarLayoutProps>(), {

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "glowing-fiesta", "name": "glowing-fiesta",
"version": "0.0.3", "version": "0.0.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "glowing-fiesta", "name": "glowing-fiesta",
"version": "0.0.3", "version": "0.0.4",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@pinia/nuxt": "^0.11.3", "@pinia/nuxt": "^0.11.3",
@ -14556,9 +14556,9 @@
} }
}, },
"node_modules/tar": { "node_modules/tar": {
"version": "7.5.2", "version": "7.5.3",
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.2.tgz", "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.3.tgz",
"integrity": "sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==", "integrity": "sha512-ENg5JUHUm2rDD7IvKNFGzyElLXNjachNLp6RaGf4+JOgxXHkqA+gq81ZAMCUmtMtqBsoU62lcp6S27g1LCYGGQ==",
"license": "BlueOak-1.0.0", "license": "BlueOak-1.0.0",
"dependencies": { "dependencies": {
"@isaacs/fs-minipass": "^4.0.0", "@isaacs/fs-minipass": "^4.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "glowing-fiesta", "name": "glowing-fiesta",
"version": "0.0.3", "version": "0.0.4",
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {