Fix minor linting issue

This commit is contained in:
GCHQDeveloper581 2026-07-14 12:19:07 +00:00
parent 1ed998b9dc
commit 93e42e6a6e
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -83,6 +83,10 @@ class NodeRecipe {
this.opList = recipeConfig.map((ing) => this._validateIngredient(ing));
}
/**
* Returns the inputType of the first operation in the opList
* @returns String
*/
firstActiveInputType() {
const first = this.opList[0];
if (!first) return null;