Skip to content

Commit 5f06a84

Browse files
committed
refactor(cell-merge): change blazorSuppress to blazorCSSuppress
1 parent 0a7c7e3 commit 5f06a84

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

projects/igniteui-angular/src/lib/data-operations/merge-strategy.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export interface IMergeByResult {
1313
* Merge strategy interface.
1414
*/
1515
export interface IGridMergeStrategy {
16-
/* blazorSuppress */
16+
/* blazorCSSuppress */
1717
/**
1818
* Function that processes merging of the whole data per merged field.
1919
* Returns collection where object has reference to the original record and map of the cell merge metadata per field.
@@ -49,7 +49,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
4949
return this._instance || (this._instance = new this());
5050
}
5151

52-
/* blazorSuppress */
52+
/* blazorCSSuppress */
5353
public merge(
5454
data: any[],
5555
field: string,
@@ -90,7 +90,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
9090
return result;
9191
}
9292

93-
/* blazorSuppress */
93+
/* blazorCSSuppress */
9494
public comparer(prevRecord: any, record: any, field: string, isDate = false, isTime = false): boolean {
9595
const a = this.getFieldValue(prevRecord,field, isDate, isTime);
9696
const b = this.getFieldValue(record,field, isDate, isTime);
@@ -145,7 +145,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
145145

146146

147147
export class DefaultTreeGridMergeStrategy extends DefaultMergeStrategy {
148-
/* blazorSuppress */
148+
/* blazorCSSuppress */
149149
public override comparer(prevRecord: any, record: any, field: string, isDate = false, isTime = false): boolean {
150150
const a = this.getFieldValue( prevRecord.data, field, isDate, isTime);
151151
const b = this.getFieldValue(record.data,field, isDate, isTime);
@@ -164,7 +164,7 @@ export class DefaultTreeGridMergeStrategy extends DefaultMergeStrategy {
164164
}
165165

166166
export class ByLevelTreeGridMergeStrategy extends DefaultMergeStrategy {
167-
/* blazorSuppress */
167+
/* blazorCSSuppress */
168168
public override comparer(prevRecord: any, record: any, field: string, isDate = false, isTime = false): boolean {
169169
const a = this.getFieldValue( prevRecord.data, field, isDate, isTime);
170170
const b = this.getFieldValue(record.data,field, isDate, isTime);

0 commit comments

Comments
 (0)