Skip to content

Commit

Permalink
ver. 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
qili.taoqili committed Dec 27, 2018
1 parent 1e0d5d5 commit cbe1b6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# history
## 0.2.3
## 0.2.4

`FIXED` fix unit too long

Expand Down
2 changes: 1 addition & 1 deletion demo/InputFormFieldDemo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Demo extends React.Component {
<i className="kuma-icon kuma-icon-phone" />
</LeftAddon>
<RightAddon>
<span>很长的单位元</span>
<span>很长的单位/元</span>
</RightAddon>
{/*<Count total={20} />*/}
</InputFormField>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxcore-input-form-field",
"version": "0.2.3",
"version": "0.2.4",
"description": "uxcore-input-form-field component for uxcore.",
"repository": "https://github.com/uxcore/uxcore-input-form-field.git",
"author": "eternalsky",
Expand Down
2 changes: 1 addition & 1 deletion src/addons/RightAddon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';

const RightAddon = props => (
<div className="kuma-uxform-right-icon " style={{ wordBreak: 'keep-all' }}>
<div className="kuma-uxform-right-icon " style={{ wordBreak: 'keep-all', whiteSpace: 'nowrap' }}>
{props.children}
</div>
);
Expand Down

0 comments on commit cbe1b6a

Please sign in to comment.