feat(editor): Improve Data Table UX based on feedback (no-changelog) (#19312)

This commit is contained in:
Milorad FIlipović
2025-09-10 14:14:25 +02:00
committed by GitHub
parent 52d44c26db
commit 6e6a8f8be8
19 changed files with 250 additions and 102 deletions

View File

@@ -45,15 +45,17 @@ const handleClearSelection = () => {
{{ getSelectedText() }}
</span>
<N8nButton
:label="i18n.baseText('generic.delete')"
type="tertiary"
data-test-id="delete-selected-button"
:label="i18n.baseText('generic.delete')"
:class="$style.button"
@click="handleDeleteSelected"
/>
<N8nButton
:label="getClearSelectionText()"
type="tertiary"
data-test-id="clear-selection-button"
:label="getClearSelectionText()"
:class="$style.button"
@click="handleClearSelection"
/>
</div>
@@ -73,9 +75,11 @@ const handleClearSelection = () => {
border-radius: var(--border-radius-base);
color: var(--execution-selector-text);
font-size: var(--font-size-2xs);
gap: var(--spacing-2xs);
}
button {
margin-left: var(--spacing-2xs);
}
.button {
display: flex;
align-items: center;
}
</style>