Skip to content

Commit

Permalink
update property panel
Browse files Browse the repository at this point in the history
Issue imixs#196
  • Loading branch information
rsoika committed Mar 3, 2023
1 parent 3273338 commit f2cedb5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { isBoundaryEvent } from '@open-bpmn/open-bpmn-model';
import * as React from 'react';
import { createRoot } from 'react-dom/client';
// import SelectItemGroupControl, { selectItemControlTester } from './SelectItemControl';
import { SelectItemRendererEntry } from './SelectItemControl';
import { SelectItemComboRendererEntry, SelectItemRendererEntry } from './SelectItemControl';
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
@injectable()
export class BPMNPropertyPanel extends AbstractUIExtension implements SelectionListener, IActionHandler { // IActionHandler EditModeListener
Expand Down Expand Up @@ -302,7 +302,8 @@ export class BPMNPropertyPanel extends AbstractUIExtension implements SelectionL
const bpmnRenderers = [
...vanillaRenderers,
// optional register custom renderers...
SelectItemRendererEntry
SelectItemRendererEntry,
SelectItemComboRendererEntry
];

// render JSONForm // vanillaRenderers
Expand Down

0 comments on commit f2cedb5

Please sign in to comment.