1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 14:31:44 +01:00

chore: fixes code suggestions (#3708)

This commit is contained in:
Amir Raminfar
2025-03-17 09:20:04 -07:00
committed by GitHub
parent c3ee2da33c
commit 3e3bb02b5f
4 changed files with 7 additions and 7 deletions

View File

@@ -62,9 +62,9 @@ const store = useContainerStore();
const { containers: allContainers } = storeToRefs(store);
const otherContainers = computed(() =>
[...allContainers.value.filter((c) => c.name === container.name && c.id !== container.id)].sort(
(a, b) => +b.created - +a.created,
),
allContainers.value
.filter((c) => c.name === container.name && c.id !== container.id)
.sort((a, b) => +b.created - +a.created),
);
const wrapper = useTemplateRef("wrapper");