Skip to content

Commit 504142c

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

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

examples-standalone/spreadsheet-app/angular.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
],
3838
"styles": [
3939
{
40-
"input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue.scss"
40+
"input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue-a11y.scss"
4141
},
4242
"src/styles.css"
4343
],

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

-1
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

+1-3
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)