mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
chore(format): updates js files to updates prettier
This commit is contained in:
@@ -109,14 +109,17 @@ const sortedContainers = computed(() =>
|
||||
} else {
|
||||
return a.name.localeCompare(b.name);
|
||||
}
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const hosts = computed(() =>
|
||||
config.hosts.reduce((acc, item) => {
|
||||
acc[item.host] = item;
|
||||
return acc;
|
||||
}, {} as Record<string, { name: string; host: string }>)
|
||||
config.hosts.reduce(
|
||||
(acc, item) => {
|
||||
acc[item.host] = item;
|
||||
return acc;
|
||||
},
|
||||
{} as Record<string, { name: string; host: string }>,
|
||||
),
|
||||
);
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user