Skip to content

Commit f5f7255

Browse files
committed
chore: code cleanup
1 parent 3918a4d commit f5f7255

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

examples-standalone/spreadsheet-app/src/app/spreadsheet-view/spreadsheet-view.component.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ <h1 class="k-h1">Event Budget</h1>
1717
></kendo-toolbar-button>
1818
</kendo-toolbar>
1919
<kendo-spreadsheet
20-
*ngIf="!reRender"
2120
#spreadsheet
2221
class="kendo-spreadsheet"
2322
[sheets]="data"

examples-standalone/spreadsheet-app/src/app/spreadsheet-view/spreadsheet-view.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChangeDetectorRef, Component, ViewChild, ViewEncapsulation } from '@angular/core';
1+
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
22
import {
33
SheetDescriptor,
44
SpreadsheetComponent,
@@ -18,10 +18,8 @@ export class SpreadsheetViewComponent {
1818
public spreadsheet!: SpreadsheetComponent;
1919
public data: SheetDescriptor[];
2020
public isButtonDisabled = true;
21-
public reRender = false;
2221

2322
constructor(
24-
private cd: ChangeDetectorRef,
2523
private notificationService: NotificationService,
2624
private excelDataService: ExcelDataService
2725
) {

0 commit comments

Comments
 (0)