mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
chore: removes console
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user