diff --git a/components/bpmn-q/modeler-component/extensions/quantme/modeling/QuantMEFactory.js b/components/bpmn-q/modeler-component/extensions/quantme/modeling/QuantMEFactory.js index 819149f6..c72c63cb 100644 --- a/components/bpmn-q/modeler-component/extensions/quantme/modeling/QuantMEFactory.js +++ b/components/bpmn-q/modeler-component/extensions/quantme/modeling/QuantMEFactory.js @@ -44,7 +44,7 @@ export default class QuantMEFactory extends BpmnFactory { // setting default for selectlist if (element.$type === READOUT_ERROR_MITIGATION_TASK) { element.mitigationMethod = "matrixInversion"; - element.calibrationMethod = "fullMatrix"; + element.calibrationMethod = "standard"; } if (element.$type === CIRCUIT_CUTTING_SUBPROCESS) { diff --git a/components/bpmn-q/modeler-component/extensions/quantme/modeling/properties-provider/QuantMEPropertyEntries.js b/components/bpmn-q/modeler-component/extensions/quantme/modeling/properties-provider/QuantMEPropertyEntries.js index ca64211a..d1cddfbb 100644 --- a/components/bpmn-q/modeler-component/extensions/quantme/modeling/properties-provider/QuantMEPropertyEntries.js +++ b/components/bpmn-q/modeler-component/extensions/quantme/modeling/properties-provider/QuantMEPropertyEntries.js @@ -535,7 +535,7 @@ export function CalibrationMethodEntry({ element }) { }; const selectOptions = [ - { value: "fullMatrix", label: "Full Matrix" }, + { value: "standard", label: "Full Matrix" }, { value: "tpnm", label: "TPNM" }, { value: "ctmp", label: "CTMP" }, { value: "ddot", label: "DDOT" }, @@ -592,7 +592,7 @@ export function MitigationMethodEntry({ element }) { else if (isCM && !bo.calibrationMethod) { return modeling.updateProperties(element, { mitigationMethod: newValue, - calibrationMethod: "fullMatrix", + calibrationMethod: "standard", }); } return modeling.updateProperties(element, {