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