Skip to content

Commit

Permalink
Update index.jsx
Browse files Browse the repository at this point in the history
Removed bolder from label.
  • Loading branch information
jeremy-farrance authored Oct 5, 2024
1 parent 082fba5 commit b940385
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ class RolesEditor extends Component {
const columnOne = <div key="editor-container-columnOne" className="editor-container">
<div className="editor-row divider" style={{marginTop:"-3rem"}}>
<Label
label={resx.get("RoleId") + ": " + state.roleDetails.id}
style={{ fontWeight: "bolder" }} />
label={resx.get("RoleId") + ": " + state.roleDetails.id} />
</div>
<div className="editor-row divider">
<SingleLineInputWithError
Expand Down Expand Up @@ -403,4 +402,4 @@ function mapStateToProps(state) {
};
}

export default connect(mapStateToProps)(RolesEditor);
export default connect(mapStateToProps)(RolesEditor);

0 comments on commit b940385

Please sign in to comment.