Skip to content

Commit

Permalink
fix: display FEEL autocomplete suggestions in correct position
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Sep 25, 2023
1 parent 3edc685 commit e37bb1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
.dmn-decision-table-container .tjs-container {
display: flex;
flex-direction: column;
position: relative;
width: min-content;
max-width: 100%;
height: 100%;
Expand Down Expand Up @@ -430,13 +429,9 @@
/* end view drd */

/* powered by */
.dmn-js-parent {
/* required to apply position: fixed correctly */
transform: translate(0);
}

.dmn-decision-table-container .powered-by {
position: fixed;
position: absolute;
bottom: 10px;
right: 10px;
z-index: 9999;
Expand All @@ -448,7 +443,7 @@
}

.dmn-decision-table-container .powered-by-overlay {
position: fixed;
position: absolute;
top: 0;
right: 0;
bottom: 0;
Expand Down
4 changes: 4 additions & 0 deletions packages/dmn-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to [dmn-js](https://github.com/bpmn-io/dmn-js) are documente

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

## 14.3.1

* `FIX`: display FEEL autocomplete suggestions in correct position

## 14.3.0

* `FEAT`: change table cell font to `monospace` ([`4643870`](https://github.com/bpmn-io/dmn-js/commit/46438706f75c6d99f9d92140685a7fec31101ba5))
Expand Down

0 comments on commit e37bb1a

Please sign in to comment.