Skip to content

Commit d662825

Browse files
fix demos
1 parent 0bc59c0 commit d662825

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/demos/Demos/Box/Overview/Angular/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
2-
import {
3-
Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
2+
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
43
import { DxBoxModule } from 'devextreme-angular';
54

65
if (!/localhost/.test(document.location.host)) {

apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
22
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
3+
import { CurrencyPipe } from '@angular/common';
34
import { DxTileViewModule, DxSelectBoxModule } from 'devextreme-angular';
45
import { Home, Service } from './app.service';
56

@@ -21,6 +22,7 @@ if (window && window.config?.packageConfigPaths) {
2122
imports: [
2223
DxTileViewModule,
2324
DxSelectBoxModule,
25+
CurrencyPipe,
2426
],
2527
})
2628
export class AppComponent {

0 commit comments

Comments
 (0)