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.
Map entries
1 parent 85188de commit d4a0fbfCopy full SHA for d4a0fbf
src/provider/camunda-platform/properties/MapProps.js
@@ -53,6 +53,7 @@ export function MapProps(props) {
53
const commandStack = useService('commandStack');
54
const translate = useService('translate');
55
56
+ const id = idPrefix + '-map';
57
const map = parameter.get('definition');
58
const entries = map.get('entries');
59
@@ -80,7 +81,7 @@ export function MapProps(props) {
80
81
82
return ListEntry({
83
element,
- autoFocusEntry: true,
84
+ autoFocusEntry: `[data-entry-id="${id}-mapEntry-${entries.length - 1}"] input`,
85
id: idPrefix + '-map',
86
items: entries,
87
label: translate('Map entries'),
0 commit comments