Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
820e597
使用kontext模型编辑图片
dfhfg123 Jun 16, 2025
cffef2a
添加点击可以再次直接上传的功能
dfhfg123 Jun 17, 2025
ac99a8a
edit调用后端
dfhfg123 Jun 18, 2025
b6a0bb7
修复#显示bug、清除对话时的bug
dfhfg123 Jun 18, 2025
a2818ff
修改edit请求
dfhfg123 Jun 20, 2025
f8fea2e
添加authorization
dfhfg123 Jun 24, 2025
26df96c
更新version
dfhfg123 Jun 24, 2025
e06254f
添加Authorization
dfhfg123 Jun 27, 2025
d807399
修改kontext接口返回值
dfhfg123 Jun 30, 2025
d449173
merge
dfhfg123 Jun 30, 2025
fe0bfc7
fix多余注释
dfhfg123 Jun 30, 2025
77519d8
version
dfhfg123 Jun 30, 2025
4c5e668
auto prettier format code
dfhfg123 Jun 30, 2025
e0469f0
添加class
dfhfg123 Jul 1, 2025
5d603a2
merge
dfhfg123 Jul 1, 2025
497b063
auto prettier format code
dfhfg123 Jul 1, 2025
1628226
修改模型
dfhfg123 Jul 1, 2025
e5e1ac2
Merge branch 'fix/bot_editImage' of https://github.com/siliconflow/bi…
dfhfg123 Jul 1, 2025
a9fb7ca
auto prettier format code
dfhfg123 Jul 1, 2025
ea5c480
remove useless values
doombeaker Jul 1, 2025
b0dc52b
reformat
doombeaker Jul 1, 2025
9a00e77
resolve conflicts
doombeaker Jul 1, 2025
cb663db
auto prettier format code
doombeaker Jul 1, 2025
298dd7f
fix
dfhfg123 Jul 1, 2025
5a93b99
删除无用日志和注释
dfhfg123 Jul 1, 2025
7fb406c
auto prettier format code
dfhfg123 Jul 1, 2025
bda80a5
fix
dfhfg123 Jul 1, 2025
960a326
Merge branch 'fix/bot_editImage' of https://github.com/siliconflow/bi…
dfhfg123 Jul 1, 2025
6a179e2
auto prettier format code
dfhfg123 Jul 1, 2025
168e9bf
fix
dfhfg123 Jul 1, 2025
a14ca7b
Merge branch 'fix/bot_editImage' of https://github.com/siliconflow/bi…
dfhfg123 Jul 1, 2025
b57ff3d
过滤文本消息
dfhfg123 Jul 1, 2025
2a2288a
auto prettier format code
dfhfg123 Jul 1, 2025
fb5fc80
服务端模式下对loadimage节点处理
dfhfg123 Jul 1, 2025
c53acdc
Merge branch 'fix/bot_editImage' of https://github.com/siliconflow/bi…
dfhfg123 Jul 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions bizyui/js/model_apply.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ const NodeInfoLogger = (function() {

// 使用装饰器模式扩展节点的onMouseDown方法
node.onMouseDown = function(e, pos, canvas) {
if (this._isServerMode && this.type === 'LoadImage') {
return;
}
// 对于小部件点击或右键点击,直接使用原始方法处理
if (e.widgetClick || e.button !== 0) {
return this._originalOnMouseDown?.apply(this, arguments);
Expand Down
Loading
Loading