Skip to content

Commit

Permalink
#28839 include in 24.04.24 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Aug 27, 2024
1 parent eb54ba3 commit 943f32f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ export class DotBubbleMenuPluginView extends BubbleMenuView {
}
});

this.updateComponent();
this.setMenuItems(doc, from);
this.show();
this.setMenuItems(doc, from);
this.updateComponent();
}

/* @Overrrider */
Expand Down Expand Up @@ -324,7 +324,8 @@ export class DotBubbleMenuPluginView extends BubbleMenuView {
/* Run commands */
exeCommand(item: BubbleMenuItem) {
const { markAction: action, active } = item;
const { inode, languageId } = this.selectionNode.attrs.data;
const { data = {} } = this.selectionNode.attrs;
const { inode, languageId } = data;

const currentInode = this.getQueryParam('inode');

Expand Down
3 changes: 2 additions & 1 deletion dotCMS/hotfix_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@ This maintenance release includes the following code fixes:
44. https://github.com/dotCMS/core/issues/28721 : Write Postman Tests for Embeddings AI Endpoints #28721
45. https://github.com/dotCMS/core/issues/28720 : Write Postman Tests for Search AI Endpoints #28720
46. https://github.com/dotCMS/core/issues/28722 : Write Postman Tests for Completions AI Endpoints #28722
47. https://github.com/dotCMS/core/issues/28990 : dotAI throws Text Embedding Error #28990
47. https://github.com/dotCMS/core/issues/28990 : dotAI throws Text Embedding Error #28990
48. https://github.com/dotCMS/core/issues/28839 : Block Editor: Bubble Menu actions and marks are not working #28839

0 comments on commit 943f32f

Please sign in to comment.