We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fab906 commit 094e9c5Copy full SHA for 094e9c5
public/js/pimcore/workflow/transitionPanel.js
@@ -272,6 +272,11 @@ pimcore.workflow.transitionPanel = Class.create({
272
field.setHeight(100);
273
}
274
275
+ if (typeof field.setValue !== "undefined") {
276
+ field.setValue(c.defaultValue);
277
+ } else {
278
+ field.config.items[0]?.setValue(c.defaultValue);
279
+ }
280
} catch(e) {
281
console.error('Could not add additional field');
282
console.info(e);
0 commit comments