Skip to content

Commit 20bfe9b

Browse files
committed
Fix case for button texts in the link dialog
1 parent f1b24e9 commit 20bfe9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RichTextEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export default class RichTextEditor extends Component {
243243
}
244244

245245
_upperCaseButtonTextIfNeeded(buttonText) {
246-
return PlatfomIOS ? buttonText : buttonText.toLowerCase();
246+
return PlatfomIOS ? buttonText : buttonText.toUpperCase();
247247
}
248248

249249
render() {

0 commit comments

Comments
 (0)