Skip to content

Commit 09d9447

Browse files
fix(ui): adjust list item layout and reorder settings menu
1 parent c10a98a commit 09d9447

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ui/src/layouts/AppLayout.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
data-test="list-group"
5656
>
5757
<template v-slot:activator="{ props }">
58-
<v-list-item v-bind="props">
58+
<v-list-item lines="two" v-bind="props">
5959
<template #prepend>
6060
<v-icon data-test="icon">
6161
{{ item.icon }}
@@ -229,11 +229,6 @@ const items = [
229229
title: "Public Keys",
230230
path: "/sshkeys/public-keys",
231231
},
232-
{
233-
icon: "mdi-cog",
234-
title: "Settings",
235-
path: "/settings",
236-
},
237232
{
238233
icon: "mdi-account-group",
239234
title: "Team",
@@ -249,6 +244,11 @@ const items = [
249244
},
250245
],
251246
},
247+
{
248+
icon: "mdi-cog",
249+
title: "Settings",
250+
path: "/settings",
251+
},
252252
];
253253
254254
const visibleItems = computed(() => items.filter((item) => !item.hidden));

0 commit comments

Comments
 (0)