Skip to content

Commit

Permalink
fix date.now
Browse files Browse the repository at this point in the history
  • Loading branch information
ljleb committed Aug 13, 2023
1 parent 390c797 commit e44d7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comfyui_custom_scripts/extensions/webuiNodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function createVoidWidget(node, name) {
type: "customtext",
name,
get value() {
return `${Math.random()}{Date.now()}`;
return `${Math.random()}${Date.now()}`;
},
set value(x) {},
};
Expand Down

0 comments on commit e44d7ce

Please sign in to comment.