From 727992048eb4c11fb987460b634232e92ee75cd4 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Mon, 19 Aug 2024 09:47:33 -0400 Subject: [PATCH] Fix type check on TaskItemImpl (#529) --- src/stores/queueStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/queueStore.ts b/src/stores/queueStore.ts index 63cf9598a..f79d4c373 100644 --- a/src/stores/queueStore.ts +++ b/src/stores/queueStore.ts @@ -70,7 +70,7 @@ export class TaskItemImpl { this.flatOutputs = flatOutputs ?? this.calculateFlatOutputs() } - private calculateFlatOutputs(): ReadonlyArray { + calculateFlatOutputs(): ReadonlyArray { if (!this.outputs) { return [] }