Skip to content

Commit c01d63f

Browse files
author
Piotr Siatka
committed
Add auto localization keys translation.
Add initialized translations.
1 parent 2827331 commit c01d63f

File tree

4 files changed

+287
-274
lines changed

4 files changed

+287
-274
lines changed

CHANGELOG.JSON

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88
"`TaxonomyPicker`: Possibility to hide deprecated and \"Available for Tagging\"= false terms [#421](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/421)"
99
],
1010
"fixes": [
11-
"`RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)"
11+
"`RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)",
12+
"`ListView` documentation: Typo - the first occurrence of maxWidth should be minWidth [#400](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/400)",
13+
"`RichText`: Text indent buttons were copy-paste of subscript and superscript buttons. Clicking on the text-indent buttons would call subscript or superscript instead. [#454](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/454)",
14+
"`RichText`: Fix of removing text and inserting link instead [#455](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/455)"
1215
]
1316
},
1417
"contributions": [
15-
"[JonasBjerke89](https://github.com/JonasBjerke89)"
18+
"[JonasBjerke89](https://github.com/JonasBjerke89)",
19+
"[Alexander Kleshcheov](https://github.com/SharePickle)"
1620
]
1721
},
1822
{

docs/documentation/docs/controls/ListView.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The `IViewField` has the following implementation:
8787
| displayName | string | no | Name that will be used as the column title. If not defined, the name property will be used. |
8888
| linkPropertyName | string | no | Specify the field name that needs to be used to render a link for the current field. |
8989
| sorting | boolean | no | Specify if you want to enable sorting for the current field. |
90-
| maxWidth | number | no | Specify the minimum width of the column. |
90+
| minWidth | number | no | Specify the minimum width of the column. |
9191
| maxWidth | number | no | Specify the maximum width of the column. |
9292
| isResizable | boolean | no | Determines if the column can be resized. |
9393
| render | function | no | Override how the field has to get rendered. |

src/controls/richText/RichText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ id="DropDownStyles"
689689
quill.deleteText(range.index, range.length);
690690
}
691691

692-
if (cursorPosition) {
692+
if (cursorPosition > -1) {
693693
const textToInsert: string = this.state.insertUrlText !== undefined ? this.state.insertUrlText : this.state.insertUrl;
694694
const urlToInsert: string = this.state.insertUrl;
695695
quill.insertText(cursorPosition, textToInsert);

0 commit comments

Comments
 (0)