Skip to content

Commit 5fcb69e

Browse files
committed
fix(PrimeOutputList): simplify return value in getListValues computed property
1 parent a76bd18 commit 5fcb69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PrimeOutputList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const { hasPrefix, hasPrefixIcon, hasSuffix, hasSuffixIcon } = useFormKitSection
2828
const getListValues = computed(() => {
2929
const values = Array.isArray(props.context?._value) ? props.context._value : []
3030
if (typeof props.context?.convertValue === 'function') {
31-
return [props.context.convertValue([...values])]
31+
return props.context.convertValue([...values])
3232
}
3333
return values
3434
})

0 commit comments

Comments
 (0)