Skip to content

Commit bae772a

Browse files
committed
bugfix: fix toolbar wobble and remove WIP tag
1 parent 8881cbc commit bae772a

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/packages/rte/tiptap/components/input-tiptap/tiptap-fixed-menu.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class UmbTiptapFixedMenuElement extends UmbLitElement {
9191
background-color: var(--uui-color-surface);
9292
color: var(--color-text);
9393
display: grid;
94-
grid-template-columns: repeat(auto-fill, minmax(10px, 1fr));
94+
grid-template-columns: repeat(auto-fill, 10px);
9595
grid-auto-flow: row;
9696
position: sticky;
9797
top: -25px;

src/packages/rte/tiptap/property-editors/property-editor-ui-tiptap-toolbar-configuration.element.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,6 @@ export class UmbPropertyEditorUiTiptapToolbarConfigurationElement
217217

218218
override render() {
219219
return html`
220-
<p style="margin-top: 0">
221-
<uui-tag color="warning">WIP Feature</uui-tag>
222-
Rows, groups, and item order currently have no effect.
223-
<br />
224-
However, items added to the toolbar will be saved and displayed in the editor according to their weight in the
225-
manifest.
226-
</p>
227220
${repeat(this.#value, (row, rowIndex) => this.#renderRow(row, rowIndex))}
228221
<uui-button look="secondary" @click=${() => this.#addRow(this.#value.length)}>+</uui-button>
229222
${this.#renderExtensions()}

0 commit comments

Comments
 (0)