Skip to content

Commit 7fe8fea

Browse files
authored
Merge pull request #3913 from IgniteUI/mvenkov/lob-minor-issues
fix(LOB): fix minor issues in LOB
2 parents 4095ee5 + 67ca4ae commit 7fe8fea

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable max-len */
22
export const gridfinjsRoutesData = {
3-
'empty-path': { displayName: 'Grid Finance demo sample', parentName: 'Grid', title: 'Real-Time Financial Analysis Data Grid built with Ignite UI for Angular', description: 'Our Angular Data Grid can handle unlimited rows and columns of data, while providing access to custom templates and real-time data updates.' },
3+
'grid-finjs-sample': { displayName: 'Grid Finance demo sample', parentName: 'Grid', title: 'Real-Time Financial Analysis Data Grid built with Ignite UI for Angular', description: 'Our Angular Data Grid can handle unlimited rows and columns of data, while providing access to custom templates and real-time data updates.' },
44
'grid-finjs-partial': { displayName: 'Grid Finance partial demo sample', parentName: 'Grid', title: 'Real-Time Financial Analysis Data Grid built with Ignite UI for Angular', description: 'Our Angular Data Grid can handle unlimited rows and columns of data, while providing access to custom templates and real-time data updates.' }
55
};

projects/app-lob/src/app/grid-finjs/grid-finjs.routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const GridfinjsRoutes: Routes = [
77
{
88
component: FinJSDemoComponent,
99
data: gridfinjsRoutesData['grid-finjs-sample'],
10-
path: ''
10+
path: 'grid-finjs-sample'
1111
},
1212
{
1313
component: GridFinJSComponent,
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
<div class="pivot-container">
2-
<div>
2+
<div style="flex-grow: 1;">
33
<igx-pivot-grid #grid1 [data]="data" [pivotConfiguration]="pivotConfigHierarchy" [height]="'850px'"
44
[superCompactMode]="true" [defaultExpandState]='true'>
55
</igx-pivot-grid>
66
</div>
7-
8-
97
<igx-pivot-data-selector [grid]="grid1"></igx-pivot-data-selector>
10-
118
</div>

src/app/pivot-grid/pivot-datasource/pivot-data-selector-sample.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ import { SALES_DATA_NEW } from '../../data/salesDataNew';
1111
})
1212
export class PivotDataSelectorSampleComponent {
1313
public data = SALES_DATA_NEW;
14-
1514
public pivotConfigHierarchy: IPivotConfiguration;
16-
1715
public dateDimension: IgxPivotDateDimension;
1816

1917
constructor() {
@@ -73,6 +71,4 @@ export class PivotDataSelectorSampleComponent {
7371
]
7472
};
7573
}
76-
77-
7874
}

0 commit comments

Comments
 (0)