Skip to content

Commit

Permalink
chore: fix typos and lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Oct 31, 2023
1 parent 798a531 commit 0b6209c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/models/gridOption.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ export interface GridOption<C extends BaseColumn = BaseColumn> {
/** Defaults to true, which leads to render a separate span for the number and styles it with css class <i>slick-sort-indicator-numbered</i> */
sortColNumberInSeparateSpan?: boolean;

/** Defaults to undefined. If we are inside a shadow DOM tree, this must be the shadow root of the tree */
shadowRoot?: ShadowRoot
/** Defaults to undefined. If we are inside a Shadow DOM tree, this must be the Shadow root of the tree */
shadowRoot?: ShadowRoot;

/**
* Defaults to false, which leads to suppress the cell from becoming active when cell as an editor and is clicked.
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/slick.headermenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export class SlickHeaderMenu implements SlickPlugin {
const menu = column?.header?.menu as HeaderMenuItems;

if (menu?.items) {
console.warn('[SlickGrid] Header Menu "items" prperty was deprecated in favor of "commandItems" to align with all other Menu plugins.');
console.warn('[SlickGrid] Header Menu "items" property was deprecated in favor of "commandItems" to align with all other Menu plugins.');
}

if (menu) {
Expand Down

0 comments on commit 0b6209c

Please sign in to comment.