Skip to content

Commit f8e100c

Browse files
committed
chore(LOB): revert changes pushed to vnext
1 parent f557c60 commit f8e100c

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
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-
'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.' },
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.' },
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: 'grid-finjs-sample'
10+
path: ''
1111
},
1212
{
1313
component: GridFinJSComponent,
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<div class="pivot-container">
2-
<div style="flex-grow: 1;">
2+
<div>
33
<igx-pivot-grid #grid1 [data]="data" [pivotConfiguration]="pivotConfigHierarchy" [height]="'850px'"
44
[superCompactMode]="true" [defaultExpandState]='true'>
55
</igx-pivot-grid>
66
</div>
7+
8+
79
<igx-pivot-data-selector [grid]="grid1"></igx-pivot-data-selector>
10+
811
</div>

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

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

1719
constructor() {
@@ -71,4 +73,6 @@ export class PivotDataSelectorSampleComponent {
7173
]
7274
};
7375
}
76+
77+
7478
}

0 commit comments

Comments
 (0)