Skip to content

Commit

Permalink
Fix duplicate ID check logic (#3978)
Browse files Browse the repository at this point in the history
* Fix duplicate ID logic

* Build shiny.js
  • Loading branch information
wch committed Jan 24, 2024
1 parent f26b133 commit f71f125
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion inst/www/shared/shiny.js
Original file line number Diff line number Diff line change
Expand Up @@ -18577,7 +18577,7 @@
if (counts.input === 1 && counts.output === 1 && !Shiny.inDevMode()) {
return;
}
if (counts.input > 0 || counts.output > 0) {
if (counts.input + counts.output > 1) {
duplicateIds.set(id, counts);
}
});
Expand Down
Loading

0 comments on commit f71f125

Please sign in to comment.