Skip to content

Commit

Permalink
remove star properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeisel committed May 22, 2024
1 parent 84da771 commit a679cb1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ export function addQuantMEInputParameters(
if (!QUANTME_ATTRIBUTES.includes(name)) {
continue;
}
// remove * introduced by pattern plugin
if (propertiesToCopy[name] === "*") {
console.log("Remove * from properties for property %s", name);
continue;
}

// create the input parameter with the QuantME attribute name and the value of the replaced task
inputOutputExtension.inputParameters.push(
Expand Down

0 comments on commit a679cb1

Please sign in to comment.