Skip to content

Commit

Permalink
Preserve input value spaces in rendered HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
jzempel committed Jul 18, 2023
1 parent e5048a5 commit b29d3f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions packages/dropdowns.next/.size-snapshot.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"index.cjs.js": {
"bundled": 55536,
"minified": 40454,
"gzipped": 9234
"bundled": 55533,
"minified": 40451,
"gzipped": 9232
},
"index.esm.js": {
"bundled": 50830,
"minified": 35992,
"gzipped": 8654,
"bundled": 50827,
"minified": 35989,
"gzipped": 8652,
"treeshaked": {
"rollup": {
"code": 28300,
"code": 28297,
"import_statements": 1064
},
"webpack": {
"code": 31190
"code": 31187
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/dropdowns.next/src/views/combobox/StyledValue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const StyledValue = styled.div.attrs({
}};
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
white-space: pre;
user-select: none;
${sizeStyles};
Expand Down

0 comments on commit b29d3f9

Please sign in to comment.