1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00

chore: removes console

This commit is contained in:
Amir Raminfar
2023-07-31 09:55:39 -07:00
parent 40c259b1be
commit ada1a98d9c

View File

@@ -72,7 +72,6 @@ const direction = ref<1 | -1>(1);
const sortedContainers = computedWithControl(
() => [containers.length, sortField.value, direction.value],
() => {
console.log("sorting");
return containers.sort((a, b) => {
if (sortField.value === "name") {
return direction.value * a.name.localeCompare(b.name);