bugfix: fix toolbar wobble and remove WIP tag

This commit is contained in:
JesmoDev
2024-09-30 15:07:57 +02:00
parent d72b473dfc
commit a3ba0bf47d
2 changed files with 1 additions and 8 deletions

View File

@@ -91,7 +91,7 @@ export class UmbTiptapFixedMenuElement extends UmbLitElement {
background-color: var(--uui-color-surface);
color: var(--color-text);
display: grid;
grid-template-columns: repeat(auto-fill, minmax(10px, 1fr));
grid-template-columns: repeat(auto-fill, 10px);
grid-auto-flow: row;
position: sticky;
top: -25px;

View File

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