fix(editor): Styling/UX improvements on the new logs view (#14789)

This commit is contained in:
Suguru Inoue
2025-04-23 15:31:12 +02:00
committed by GitHub
parent 6c9c720ae9
commit 454e5c77ad
28 changed files with 472 additions and 228 deletions

View File

@@ -39,6 +39,7 @@ const options = computed(() => {
:model-value="value"
:options="options"
data-test-id="ndv-run-data-display-mode"
:size="compact ? 'small' : 'medium'"
@update:model-value="(selected) => emit('change', selected)"
>
<template v-if="compact" #option="option">
@@ -64,6 +65,6 @@ const options = computed(() => {
<style lang="scss" module>
.icon {
padding-inline: var(--spacing-2xs);
padding-inline: var(--spacing-4xs);
}
</style>