Skip to content

Commit

Permalink
docs: simple comment refactoring to help documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jan 12, 2021
1 parent fcdb2e9 commit d2559af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/interfaces/column.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,13 @@ export interface Column<T = any> {
/** Column Title Name to be displayed in the Grid (UI) */
name?: string;

/** Column Title Name that could be used by the Composite Editor Modal, it has precedence over the column "name" property. */
/** Alternative Column Title Name that could be used by the Composite Editor Modal, it has precedence over the column "name" property. */
nameCompositeEditor?: string;

/** Column Title Name translation key that can be used by the translate Service (i18n) to display the text for each column header title */
nameKey?: string;

/** Column Title Name translation key that could be used by the Composite Editor Modal, it has precedence over the column "name" property. */
/** Alternative Column Title Name translation key that could be used by the Composite Editor Modal, it has precedence over the column "name" property. */
nameCompositeEditorKey?: string;

/** an event that can be used for executing an action before the cell becomes editable (that event happens before the "onCellChange" event) */
Expand Down

0 comments on commit d2559af

Please sign in to comment.