Harmonization with IVIS
This commit is contained in:
parent
428fb9db7b
commit
397f85dac4
41 changed files with 8587 additions and 10940 deletions
4
client/src/lib/bootstrap-components.js
vendored
4
client/src/lib/bootstrap-components.js
vendored
|
@ -14,7 +14,6 @@ import {withComponentMixins} from "./decorator-helpers";
|
|||
withTranslation,
|
||||
withErrorHandling
|
||||
])
|
||||
|
||||
class DismissibleAlert extends Component {
|
||||
static propTypes = {
|
||||
severity: PropTypes.string.isRequired,
|
||||
|
@ -74,6 +73,7 @@ class Button extends Component {
|
|||
icon: PropTypes.string,
|
||||
iconTitle: PropTypes.string,
|
||||
className: PropTypes.string,
|
||||
title: PropTypes.string,
|
||||
type: PropTypes.string
|
||||
}
|
||||
|
||||
|
@ -106,7 +106,7 @@ class Button extends Component {
|
|||
}
|
||||
|
||||
return (
|
||||
<button type={type} className={className} onClick={::this.onClick}>{icon}{iconSpacer}{props.label}</button>
|
||||
<button type={type} className={className} onClick={::this.onClick} title={this.props.title}>{icon}{iconSpacer}{props.label}</button>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue