Skip to content

Commit 076198c

Browse files
committed
adjust controls panel width and update null value label to en dash
1 parent 8ef064e commit 076198c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/combinator/src/components/combinator.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,14 +609,15 @@ export default {
609609
}
610610
611611
&__controls {
612-
inline-size: var(--dt-size-875);
612+
inline-size: var(--dt-size-900);
613613
max-inline-size: var(--dt-size-1000);
614614
flex-shrink: 0;
615615
max-block-size: var(--dt-size-950);
616616
font: var(--dt-text-body-sm);
617617
618618
:where(.dialtone-playground--fullscreen) & {
619619
@media screen and (min-width: 640px) {
620+
inline-size: var(--dt-size-950);
620621
max-block-size: 100%;
621622
}
622623
}

packages/combinator/src/components/controls/control_selection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const options = computed(() => {
162162
}) ?? [];
163163
164164
if (props.defaultValue === null || props.defaultValue === undefined) {
165-
return [{ value: null, label: 'null' }, ...valueOptions];
165+
return [{ value: null, label: '\u2013' }, ...valueOptions];
166166
}
167167
return valueOptions;
168168
});

0 commit comments

Comments
 (0)