Remove console.log
This commit is contained in:
parent
b73c849530
commit
15a20b972b
@ -33,18 +33,15 @@ const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday',
|
|||||||
const baseUrl = 'https://lunch.zvon.tech/api';
|
const baseUrl = 'https://lunch.zvon.tech/api';
|
||||||
|
|
||||||
const swapRestaurants = (id: number, direction: Direction) => {
|
const swapRestaurants = (id: number, direction: Direction) => {
|
||||||
console.log("DOING");
|
|
||||||
const oldIndex = store.state.restaurantOrder.get(id);
|
const oldIndex = store.state.restaurantOrder.get(id);
|
||||||
if (oldIndex === undefined || oldIndex === null) {
|
if (oldIndex === undefined || oldIndex === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("DOING2");
|
|
||||||
|
|
||||||
const newIndex = oldIndex + (direction == Direction.LEFT ? -1 : 1);
|
const newIndex = oldIndex + (direction == Direction.LEFT ? -1 : 1);
|
||||||
if(newIndex < 0 || newIndex >= menus.value.length) {
|
if(newIndex < 0 || newIndex >= menus.value.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("DOING3");
|
|
||||||
|
|
||||||
let swapId = -1;
|
let swapId = -1;
|
||||||
for (let [key, value] of store.state.restaurantOrder.entries()) {
|
for (let [key, value] of store.state.restaurantOrder.entries()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user