Skip to content

Commit

Permalink
chore: fix generate-utils func param default
Browse files Browse the repository at this point in the history
  • Loading branch information
Juveniel committed Oct 31, 2024
1 parent 6f3b360 commit c0beba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/scss/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
$kendo-prefix: k- !default;
$kendo-important: true !default;

@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
@mixin generate-utils( $name, $props, $values, $function: "genFunc", $important: $kendo-important, $css-var: null ) {
@if $values {
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
$_fn: if( meta.function-exists( $function ), meta.get-function( $function ), null );
Expand Down

0 comments on commit c0beba9

Please sign in to comment.