Skip to content

Commit 0dac07c

Browse files
committed
Merge branch 'release/0.5.1'
2 parents 2c26e24 + d61be13 commit 0dac07c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.5.1
2+
---
3+
4+
### BUG Fix
5+
6+
1. `getSlotMenuOptions.apply` incorrectly applying arguments when right clicking on slots.
7+
8+
https://github.com/ty0x2333/ComfyUI-Dev-Utils/issues/18
9+
10+
Thanks [Trung0246](https://github.com/Trung0246)
11+
112
0.5.0
213
---
314

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-dev-utils"
33
description = "Execution Time Analysis, Reroute Enhancement, Node collection for developers."
4-
version = "0.5.0"
4+
version = "0.5.1"
55
license = { text = "MIT License" }
66
dependencies = ["aiohttp-sse"]
77

web/reroute.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ app.registerExtension({
1010
// region Copy From litegraph.core.js
1111
var menuInfo = [];
1212
if (getSlotMenuOptions) {
13-
menuInfo = getSlotMenuOptions.apply(this, slot);
13+
menuInfo = getSlotMenuOptions.apply(this, [slot]);
1414
} else {
1515
if (
1616
slot &&

0 commit comments

Comments
 (0)