Skip to content

Commit

Permalink
chore(create-pad): remove distracting tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed May 15, 2024
1 parent d3cd574 commit 233a9b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions lib/bpmn/appendCreatePad/AppendCreatePad.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ export default class AppendCreatePad extends CreatePad {
for (const id in contextPadEntries) {
if (!id.startsWith('append') || id === 'append') {
delete contextPadEntries[ id ];
} else {
delete contextPadEntries[ id ].title;
}
}

Expand Down
3 changes: 1 addition & 2 deletions lib/bpmn/attachCreatePad/AttachCreatePad.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ export default class AttachCreatePad extends CreatePad {
};
}
},
className,
title: this._translate(target.attachers.length ? 'Create boundary event' : 'Attach boundary event')
className
}
};
}, {});
Expand Down

0 comments on commit 233a9b1

Please sign in to comment.