Skip to content

Commit b7711cd

Browse files
committed
use normel property grid
1 parent 0d173c1 commit b7711cd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,8 @@ <h1>Process Layout Designer</h1>
541541

542542
<section class="panel inspector-panel">
543543
<div class="panel-title">Inspector</div>
544-
<node-projects-web-component-designer-property-grid-with-header
545-
id="property-grid"></node-projects-web-component-designer-property-grid-with-header>
544+
<node-projects-web-component-designer-property-grid
545+
id="property-grid"></node-projects-web-component-designer-property-grid>
546546
</section>
547547
</div>
548548

src/initialize.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CommandType, DocumentContainer, PaletteView, PropertyGridWithHeader } from '@node-projects/web-component-designer';
1+
import { CommandType, DocumentContainer, PaletteView, PropertyGrid } from '@node-projects/web-component-designer';
22
import { CodeViewMonaco } from '@node-projects/web-component-designer-codeview-monaco';
33
import { defaultBpmnDocument } from './defaultBpmnDocument.js';
44
import { primeBpmnConnectionRouting } from './services/BpmnConnectionRouting.js';
@@ -32,7 +32,7 @@ const recentDocumentsStorageKey = 'bpnm-editor.recent-documents';
3232
const maxRecentDocuments = 6;
3333

3434
const paletteView = document.getElementById('palette-view') as PaletteView;
35-
const propertyGrid = document.getElementById('property-grid') as PropertyGridWithHeader;
35+
const propertyGrid = document.getElementById('property-grid') as PropertyGrid;
3636
const documentHost = document.getElementById('document-host') as HTMLDivElement;
3737
const canvasPanel = document.getElementById('canvas-panel') as HTMLElement;
3838
const fileInput = document.getElementById('file-input') as HTMLInputElement;

0 commit comments

Comments
 (0)