Skip to content

Commit 5799e90

Browse files
committed
chore(*): Remove extra semicolon.
1 parent 535e840 commit 5799e90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5415,7 +5415,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
54155415
* If `headers` is enabled, it will use the column header (if any) instead of the column field.
54165416
*/
54175417
public getSelectedData(formatters = false, headers = false) {
5418-
const source = this.isRowPinningToTop ? [...this.pinnedDataView, ...this.dataView] : [...this.dataView, ...this.pinnedDataView];;
5418+
const source = this.isRowPinningToTop ? [...this.pinnedDataView, ...this.dataView] : [...this.dataView, ...this.pinnedDataView];
54195419
return this.extractDataFromSelection(source, formatters, headers);
54205420
}
54215421

0 commit comments

Comments
 (0)