소스 검색

Fix case for button texts in the link dialog

Yevhen Pavliuk 8 년 전
부모
커밋
20bfe9bc54
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/RichTextEditor.js

+ 1
- 1
src/RichTextEditor.js 파일 보기

@@ -243,7 +243,7 @@ export default class RichTextEditor extends Component {
243 243
   }
244 244
 
245 245
   _upperCaseButtonTextIfNeeded(buttonText) {
246
-    return PlatfomIOS ? buttonText : buttonText.toLowerCase();
246
+    return PlatfomIOS ? buttonText : buttonText.toUpperCase();
247 247
   }
248 248
 
249 249
   render() {