Skip to content

Commit

Permalink
fix(configui): tagsLimit should be a number (#6261)
Browse files Browse the repository at this point in the history
  • Loading branch information
d4x1 authored Oct 17, 2023
1 parent ee1b60e commit c84f5ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const AdditionalSettings = ({ transformation, setTransformation }: Props)
...transformation,
refdiff: {
...transformation?.refdiff,
tagsLimit: e.target.value,
tagsLimit: +e.target.value,
},
})
}
Expand Down

0 comments on commit c84f5ef

Please sign in to comment.