Skip to content

Commit a34284b

Browse files
committed
added .value missed on inputId
1 parent b5ef124 commit a34284b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/FwbInput/composables/useInputAttributes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const useInputAttributes = (props: InputProps) => {
2020
if (inputId.value !== '') {
2121
return {
2222
...attrs,
23-
id: inputId,
23+
id: inputId.value,
2424
}
2525
} else {
2626
return attrs

0 commit comments

Comments
 (0)