Skip to content

Commit

Permalink
Merge pull request #128 from smithbk/issue-654-fix-json-chip-min-width
Browse files Browse the repository at this point in the history
Issue 654: Fix JSON min width setting
  • Loading branch information
smithbk authored Oct 11, 2023
2 parents 770264a + bfd3a85 commit 7a98b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/code/jsonGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -699,10 +699,10 @@ export class JSONGenerator {
"Size-1": { type, value: `${sizing}px` },
"min-target": { type: "sizing", value: `${minTarget}px` },
"mobile-min-target": { type: "sizing", value: `${mobileMinTarget}px` },
"Button-MinWidth": `${buttonMinWidth}px`,
"Button-MinWidth": { type: "sizing", value: `${buttonMinWidth}px` },
"Sm-Button-Height": fcn(smallButtonHeight),
"Chip-Height": fcn(chipHeight),
"Chip-MinWidth": fcn(chipMinWidth),
"Chip-MinWidth": { type: "sizing", value: `${chipMinWidth}px` },
"Slider-Handle-Height": fcn(sliderHandleHeight),
"Image-Height": fcn(imageHeight),
};
Expand Down

0 comments on commit 7a98b13

Please sign in to comment.