夏目猫猫 1 месяц назад
Родитель
Сommit
760a2c656c
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      web/app/components/workflow/nodes/variable-assigner/use-config.ts

+ 1
- 1
web/app/components/workflow/nodes/variable-assigner/use-config.ts Просмотреть файл

@@ -124,7 +124,7 @@ const useConfig = (id: string, payload: VariableAssignerNodeType) => {
const handleAddGroup = useCallback(() => {
let maxInGroupName = 1
inputs.advanced_settings.groups.forEach((item) => {
const match = item.group_name.match(/(\d+)$/)
const match = /(\d+)$/.exec(item.group_name)
if (match) {
const num = Number.parseInt(match[1], 10)
if (num > maxInGroupName)

Загрузка…
Отмена
Сохранить