From 59cfa0e7e3108f56d48ffb030a1ec00b77167f76 Mon Sep 17 00:00:00 2001 From: flyingshutter Date: Sat, 8 Apr 2023 05:12:31 +0200 Subject: [PATCH] change output types to FLOAT --- web/extensions/core/batchIndex.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/extensions/core/batchIndex.js b/web/extensions/core/batchIndex.js index 386a1d7a7..51ba6e931 100644 --- a/web/extensions/core/batchIndex.js +++ b/web/extensions/core/batchIndex.js @@ -3,8 +3,8 @@ import { app } from "/scripts/app.js"; class BatchInfo { constructor() { - this.addOutput("iteration", "INT"); - this.addOutput("batchCount", "INT"); + this.addOutput("iteration", "FLOAT"); + this.addOutput("batchCount", "FLOAT"); const batchIteration = (ComfyWidgets["INT"](this, "iteration", ["INT",{}], app) || {}).widget; batchIteration.disabled = true;