Преглед на файлове

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() {