use icons for permission type and for delete function

This commit is contained in:
Maren Süwer
2019-02-01 15:31:14 +01:00
parent fe837b816c
commit 65b1ca477a
7 changed files with 37 additions and 26 deletions

View File

@@ -22,8 +22,7 @@ class Radio extends React.Component<Props> {
render() {
return (
<div className="field is-grouped">
<div className="control">
<label className="radio" disabled={this.props.disabled}>
<input
type="radio"
@@ -36,8 +35,6 @@ class Radio extends React.Component<Props> {
{this.props.label}
{this.renderHelp()}
</label>
</div>
</div>
);
}
}