Skip to content

Commit

Permalink
Fixed the bug where you are unable to change the column values of a c…
Browse files Browse the repository at this point in the history
…ore through manual editing
  • Loading branch information
aaronge-2020 committed May 14, 2024
1 parent dce0213 commit 3c70392
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions javascript/drawCanvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -929,10 +929,10 @@ function saveCore(core) {
core.col = newCol;

if (
window.sortedCoresData.some(
window.sortedCoresData.filter(
(existingCore) =>
existingCore.row === newRow && existingCore.col === newCol
)
).length > 1
) {
updateColumnsInRowAfterModification(newRow);
}
Expand Down

0 comments on commit 3c70392

Please sign in to comment.