Skip to content

Commit

Permalink
do not force uppercase on JQUIButton widgets (#147)
Browse files Browse the repository at this point in the history
- closes #132
  • Loading branch information
foxriver76 authored Nov 9, 2023
1 parent e768fb8 commit ba455d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src/Vis/Widgets/JQui/JQuiButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ class JQuiButton extends VisRxWidget {
style={iconStyle}
/> : null;

const buttonStyle = {};
const buttonStyle = { textTransform: 'none' };
// apply style from the element
Object.keys(this.state.rxStyle).forEach(attr => {
const value = this.state.rxStyle[attr];
Expand Down

0 comments on commit ba455d5

Please sign in to comment.