Adding some debugging statements

This commit is contained in:
Benjamin Lannon 2021-05-29 11:22:34 -04:00
commit 3d27d3f4ea
2 changed files with 5 additions and 1 deletions

View file

@ -96,6 +96,10 @@ function diffLabels(oldLabels, newLabels) {
oldLabel.color !== newLabel.color ||
oldLabel.description !== newLabel.description
) {
console.log('update')
console.log({ oldLabel })
console.log({ newLabel })
// UPDATE
labelModList.push({ type: "update", label: newLabel });
}

File diff suppressed because one or more lines are too long