Skip to content
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
228dcf5
add dataflow
Aug 13, 2025
49bc15c
add dataflow
Aug 13, 2025
b217607
add dataflow
Aug 13, 2025
8745478
remove antv/x6/lib/registry package
Aug 13, 2025
75aecb0
Fix bugs
Aug 14, 2025
63e67f4
Fix bugs
Aug 14, 2025
d05c58a
add package
Aug 14, 2025
3467eef
add package
Aug 14, 2025
3b826a3
add zhHantOps
Aug 14, 2025
9daff24
Merge pull request #1 from OpenCSGs/main
z275748353 Aug 17, 2025
08ff9c5
1.Adjust the image path for operator management
Aug 17, 2025
dae2cbe
Operator Management: Modification of dataflow/operator/ interface
Aug 17, 2025
04b703a
Merge pull request #3 from OpenCSGs/main
z275748353 Aug 18, 2025
1e5f80f
1.Add the cancellation of execution for internationalization and stat…
Aug 20, 2025
5f395ef
1.Add the cancellation of execution for internationalization and stat…
Aug 20, 2025
eeb2a9d
Merge pull request #4 from OpenCSGs/main
z275748353 Aug 23, 2025
fc375cd
1.Add the cancellation of execution for internationalization and stat…
Aug 23, 2025
9d422c9
Merge pull request #5 from OpenCSGs/main
z275748353 Sep 15, 2025
7aa41ad
Add newly developed operators, internationalize tools, and supplement…
Sep 15, 2025
00862d4
Add newly developed operators, internationalize tools, and supplement…
Sep 15, 2025
6778e54
Merge pull request #6 from OpenCSGs/main
z275748353 Oct 30, 2025
3a091dd
1.Add template deletion function
Oct 30, 2025
121a4e2
Fix the bug of dataflow with ID #36
Oct 30, 2025
6423588
Fix the bug of dataflow with ID OpenCSGS/csghub-dataflow#31
Oct 31, 2025
aadd742
Fix the bug of dataflow with ID OpenCSGS/csghub-dataflow#43
Nov 20, 2025
4098348
Merge branch 'main' into csghub-wl-jlp
z275748353 Nov 22, 2025
3717233
Merge pull request #7 from OpenCSGs/main
z275748353 Nov 26, 2025
27530ed
Fix the bug of dataflow with ID OpenCSGS/csghub-dataflow#34
Nov 27, 2025
a17cf85
Merge pull request #8 from OpenCSGs/main
z275748353 Nov 27, 2025
91a889c
Merge branch 'csghub-wl-jlp' of https://github.com/z275748353/csghub …
Nov 27, 2025
2debed9
Merge pull request #9 from OpenCSGs/main
z275748353 Nov 28, 2025
e6c7174
1.Fixed the issue where modifying the custom template operator name d…
Nov 28, 2025
014c55f
Merge remote-tracking branch 'origin/csghub-wl-jlp' into csghub-wl-jlp
Nov 28, 2025
d6598f8
Merge pull request #11 from OpenCSGs/main
z275748353 Dec 2, 2025
1ab36ac
1.Add horizontal and vertical alignment guides for operator task flow…
LP-J Dec 2, 2025
2231ffd
1. When dealing with operator overlap, there may be duplicate connect…
LP-J Dec 3, 2025
23fb4f1
Problem handling of model path display
LP-J Dec 5, 2025
7d31e95
Merge branch 'main' into csghub-wl-jlp
z275748353 Dec 5, 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
26 changes: 22 additions & 4 deletions frontend/src/components/dataflow_config/newTask/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,11 @@
<div
v-for="model in modelList"
:key="model.id"
@click="selectModel(model)"
class="cursor-pointer model-select-item"
@click="!modelValidating && selectModel(model)"
:class="[
'model-select-item',
modelValidating ? 'cursor-not-allowed opacity-60' : 'cursor-pointer'
]"
>
<repo-item
:repo="model"
Expand Down Expand Up @@ -1100,8 +1103,18 @@
modelList.value = []
modelTotal.value = 0
} else {
if (data.value && data.value.data) {
modelList.value = data.value.data.models || []
if (data.value && data.value.data && Array.isArray(data.value.data.models)) {
data.value.data.models.forEach((item) => {
if (item && typeof item === 'object') {
const path = item.path || ''
item.hf_path = path
item.ms_path = path
item.csg_path = path
item.name = path
item.nickname = path
}
})
modelList.value = data.value.data.models
modelTotal.value = data.value.data.total || 0
} else {
modelList.value = []
Expand Down Expand Up @@ -1135,6 +1148,11 @@

// 选择模型
const selectModel = async (model) => {
// 正在验证中
if (modelValidating.value) {
return
}

if (!currentSelectModelItem.value) {
return
}
Expand Down