Skip to content

Commit

Permalink
BUGFIX: RAIL-1198 Removed experimental warning from pivot table & mov…
Browse files Browse the repository at this point in the history
…ed examples
  • Loading branch information
Lukas Horak committed Nov 6, 2018
1 parent a61e505 commit 37d6574
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/src/routes/_list.js
Expand Up @@ -38,7 +38,6 @@ export const advancedUseCasesRoutes = [
];

export const nextRoutes = [
{ path: '/next/pivot-table', title: 'Pivot Table', Component: PivotTableDemo },
{ path: '/next/combo-chart', title: 'Combo chart', Component: ComboChart }
];

Expand All @@ -47,6 +46,7 @@ const NextRoutes = props => WithSubRoutes({ ...props, subRoutes: nextRoutes });

export const sideNavigationRoutes = [
{ path: '/', title: 'Basic Components', Component: BasicComponents, exact: true },
{ path: '/pivot-table', title: 'Pivot Table', Component: PivotTableDemo },
{ path: '/visualization', title: 'Visualization Component', Component: Visualization },
{ path: '/sorting', title: 'Sorting', Component: Sorting },
{ path: '/time-over-time-comparison', title: 'Time Over Time Comparison', Component: TimeOverTimeComparison },
Expand Down
2 changes: 1 addition & 1 deletion examples/test/PivotTableDemo_test.js
Expand Up @@ -5,7 +5,7 @@ import { loginUsingGreyPages } from './utils/helpers';

fixture('Pivot Table Demo') // eslint-disable-line no-undef
.page(config.url)
.beforeEach(loginUsingGreyPages(`${config.url}/next/pivot-table`));
.beforeEach(loginUsingGreyPages(`${config.url}/pivot-table`));

test('should render all tables', async (t) => {
const table = Selector('.s-pivot-table-sorting');
Expand Down
3 changes: 0 additions & 3 deletions src/components/core/PivotTable.tsx
Expand Up @@ -17,8 +17,6 @@ import {
} from 'ag-grid';
import { CellClassParams } from 'ag-grid/dist/lib/entities/colDef'; // this is not exported from ag-grid index

import { visualizationIsBetaWarning } from '../../helpers/utils';

import {
executionToAGGridAdapter,
ROW_ATTRIBUTE_COLUMN,
Expand Down Expand Up @@ -367,7 +365,6 @@ export class PivotTableInner extends
};
this.gridDataSource = null;
this.gridApi = null;
visualizationIsBetaWarning();
}

public componentWillMount() {
Expand Down

0 comments on commit 37d6574

Please sign in to comment.