Skip to content

Commit

Permalink
nanro: Fix copying error when dragging from hatena
Browse files Browse the repository at this point in the history
  • Loading branch information
x-sheep committed Aug 8, 2023
1 parent b47210d commit 358446e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/variety/nanro.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@
}
if (this.mouseCell.isnull) {
this.inputData = cell.getNum();
if (this.inputData === -2) {
this.inputData = null;
} else if (this.inputData === -1) {
if (this.inputData === -1) {
if (cell.qsub === 1) {
this.inputData = -2;
} else if (cell.qsub === 2) {
Expand Down

1 comment on commit 358446e

@vercel
Copy link

@vercel vercel bot commented on 358446e Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pzprjs – ./

pzprjs-robx.vercel.app
pzprjs-git-main-robx.vercel.app
pzprjs.vercel.app

Please sign in to comment.