Просмотр исходного кода

Fix case for button texts in the link dialog

Yevhen Pavliuk 8 лет назад
Родитель
Сommit
20bfe9bc54
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      src/RichTextEditor.js

+ 1
- 1
src/RichTextEditor.js Просмотреть файл

243
   }
243
   }
244
 
244
 
245
   _upperCaseButtonTextIfNeeded(buttonText) {
245
   _upperCaseButtonTextIfNeeded(buttonText) {
246
-    return PlatfomIOS ? buttonText : buttonText.toLowerCase();
246
+    return PlatfomIOS ? buttonText : buttonText.toUpperCase();
247
   }
247
   }
248
 
248
 
249
   render() {
249
   render() {