Skip to content

Commit 72695d1

Browse files
committed
chore: lint autofix
1 parent e86e8d5 commit 72695d1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

apps/preview/nuxt/components/utils/Controls.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@
110110
<td class="propType">
111111
<span>{{ control.propType }}</span>
112112
</td>
113-
<td class="propDefaultValue">{{ control.propDefaultValue ?? control.type === 'boolean' ? 'false' : '' }}</td>
113+
<td class="propDefaultValue">
114+
{{ (control.propDefaultValue ?? control.type === 'boolean') ? 'false' : '' }}
115+
</td>
114116
<td class="required">{{ control?.isRequired?.toString() }}</td>
115117
<td class="description">{{ control.description }}</td>
116118
</tr>

packages/sfui/frameworks/vue/components/SfSelect/SfSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ keep it here, or to always pass modelValue to the component.
5151
*/
5252
const internalState = ref<string>(modelValue.value);
5353
const selectModel = computed({
54-
get: () => modelValue.value || internalState.value,
54+
get: () => modelValue.value || internalState.value,
5555
set: (value) => {
5656
emit('update:modelValue', value);
5757
internalState.value = value;

0 commit comments

Comments
 (0)