Skip to content

Commit

Permalink
chore: code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yanmariomenev committed Jan 6, 2025
1 parent 3918a4d commit 504142c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples-standalone/spreadsheet-app/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
],
"styles": [
{
"input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue.scss"
"input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue-a11y.scss"
},
"src/styles.css"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ <h1 class="k-h1">Event Budget</h1>
></kendo-toolbar-button>
</kendo-toolbar>
<kendo-spreadsheet
*ngIf="!reRender"
#spreadsheet
class="kendo-spreadsheet"
[sheets]="data"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChangeDetectorRef, Component, ViewChild, ViewEncapsulation } from '@angular/core';
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
import {
SheetDescriptor,
SpreadsheetComponent,
Expand All @@ -18,10 +18,8 @@ export class SpreadsheetViewComponent {
public spreadsheet!: SpreadsheetComponent;
public data: SheetDescriptor[];
public isButtonDisabled = true;
public reRender = false;

constructor(
private cd: ChangeDetectorRef,
private notificationService: NotificationService,
private excelDataService: ExcelDataService
) {
Expand Down

0 comments on commit 504142c

Please sign in to comment.