Skip to content

Commit

Permalink
Merge branch 'develop' into 2239-text-annotation-alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul99ahad authored Oct 14, 2024
2 parents 53ed469 + 50ad6ac commit f6160b2
Show file tree
Hide file tree
Showing 8 changed files with 524 additions and 1,538 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ All notable changes to [bpmn-js](https://github.com/bpmn-io/bpmn-js) are documen

___Note:__ Yet to be released changes appear here._

* `DEPS`: update to `bpmn-moddle@9` ([#2114](https://github.com/bpmn-io/bpmn-js/pull/2114))

### Breaking Changes

* Require `Node >= 18` for building the project.

## 17.11.1

* `FIX`: handle searching elements without labels ([#2232](https://github.com/bpmn-io/bpmn-js/issues/2232), [#2234](https://github.com/bpmn-io/bpmn-js/pull/2234))
Expand All @@ -19,7 +25,7 @@ ___Note:__ Yet to be released changes appear here._

## 17.10.0

* `CHORE`: correct various type hints ([#https://github.com/bpmn-io/bpmn-js/issues/2228](https://github.com/bpmn-io/bpmn-js/issues/2228))
* `CHORE`: correct various type hints ([#2228](https://github.com/bpmn-io/bpmn-js/issues/2228))
* `FIX`: pasting compensation activity without boundary event ([#2070](https://github.com/bpmn-io/bpmn-js/issues/2070))
* `FIX`: lane resize constraints for se and nw direction ([#2209](https://github.com/bpmn-io/bpmn-js/issues/2209))
* `FIX`: auto place elements vertically in sub-processes ([#2127](https://github.com/bpmn-io/bpmn-js/issues/2127))
Expand Down
8 changes: 0 additions & 8 deletions lib/.eslintrc

This file was deleted.

6 changes: 5 additions & 1 deletion lib/util/LabelUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,11 @@ export function setLabel(element, text) {
if (attr) {

if (attr === 'categoryValueRef') {
semantic['categoryValueRef'].value = text;
if (!semantic[attr]) {
return element;
}

semantic[attr].value = text;
} else {
semantic[attr] = text;
}
Expand Down
Loading

0 comments on commit f6160b2

Please sign in to comment.