Skip to content

Commit 502b120

Browse files
authored
Fix revisionSettings formatting in track-changes.md
Corrected formatting and property names in the track changes documentation.
1 parent b90dacb commit 502b120

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ In DocumentEditor, we have built-in review panel in which we have provided suppo
170170

171171
## Custom metadata along with author
172172

173-
The Document Editor provides options to customize revisions using [`revisionsettings`](https://ej2.syncfusion.com/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
173+
The Document Editor provides options to customize revisions using [`revisionSettings`](https://ej2.syncfusion.com/documentation/api/document-editor/documenteditorsettingsmodel#revisionsettings). The [`customData`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#customdata) property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the [`showCustomDataWithAuthor`](https://ej2.syncfusion.com/documentation/api/document-editor/revisionsettings#showcustomdatawithauthor) property.
174174

175175
The following example code illustrates how to enable and update custom metadata for track changes revisions.
176176

@@ -179,7 +179,7 @@ import { DocumentEditorContainer, Ribbon } from '@syncfusion/ej2-documenteditor'
179179
let container: DocumentEditorContainer = new DocumentEditorContainer({
180180
height: '590px',
181181
serviceUrl= hostUrl,
182-
enableTrackChanges=true,
182+
enableTrackChanges= true,
183183
documentEditorSettings: {
184184
revisionSettings: { customData : "Developer", showCustomDataWithAuthor : true }}
185185
});

0 commit comments

Comments
 (0)