Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3f10ab2
Migrate Table visualization (Renderer) to React
kravets-levko Jul 8, 2019
e909f80
Restore all column types except of JSON
kravets-levko Jul 8, 2019
c9f09eb
Restore JSON column + fix proptypes
kravets-levko Jul 8, 2019
eb3323c
Restore JSON column: refine code and fix bugs
kravets-levko Jul 8, 2019
5048e4d
Refine code
kravets-levko Jul 10, 2019
ca8bcc5
Restore search in data
kravets-levko Jul 16, 2019
91fd16f
Restore column sorting
kravets-levko Jul 16, 2019
66f8265
Cleanup: remove angular components (incl. <dynamic-table>)
kravets-levko Jul 17, 2019
d9117a4
Minor fixes
kravets-levko Jul 17, 2019
a0c56dd
Merge branch 'master' into migrate-visualization-table
kravets-levko Jul 17, 2019
31b3a4e
Fix tests
kravets-levko Jul 17, 2019
e662803
Fixes: pagination alignment; re-render visualization on tab change (a…
kravets-levko Jul 18, 2019
cd8fb4a
Add tests
kravets-levko Jul 18, 2019
64afeec
Fix search in table: force cast value to string
kravets-levko Jul 18, 2019
6401afa
When visualization options change, compare them deeply to avoid unnec…
kravets-levko Jul 23, 2019
4547ca5
Merge branch 'master' into migrate-visualization-table
kravets-levko Jul 24, 2019
c045003
Make tests more stable
kravets-levko Jul 24, 2019
c0aad9d
CR1: UI tweaks
kravets-levko Jul 30, 2019
bfe02e7
Better align tooltip on table header cells
kravets-levko Jul 30, 2019
fdfb760
Add link to GH discussion
kravets-levko Jul 30, 2019
11628f6
Tweak table headings
kravets-levko Jul 31, 2019
61730f6
Merge branch 'master' into migrate-visualization-table
kravets-levko Jul 31, 2019
b47ea55
Update to reflect changes in new Ant version
kravets-levko Jul 31, 2019
5b80f43
Fix search input
kravets-levko Jul 31, 2019
675ea83
Increase min width of table headings
kravets-levko Jul 31, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix tests
  • Loading branch information
kravets-levko committed Jul 17, 2019
commit 31b3a4e7c3b451ff60e85a9422b15a6393b4c694
6 changes: 3 additions & 3 deletions client/cypress/integration/dashboard/dashboard_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ describe('Dashboard', () => {
addWidgetAndShareDashboard(this.dashboardUrl, 'select 1', {}, (secretAddress) => {
cy.logout();
cy.visit(secretAddress);
cy.getByTestId('DynamicTable', { timeout: 10000 }).should('exist');
cy.getByTestId('TableVisualization', { timeout: 10000 }).should('exist');
cy.percySnapshot('Successfully Shared Unparameterized Dashboard');
});
});
Expand All @@ -189,7 +189,7 @@ describe('Dashboard', () => {
}, (secretAddress) => {
cy.logout();
cy.visit(secretAddress);
cy.getByTestId('DynamicTable', { timeout: 10000 }).should('exist');
cy.getByTestId('TableVisualization', { timeout: 10000 }).should('exist');
cy.percySnapshot('Successfully Shared Parameterized Dashboard');
});
});
Expand Down Expand Up @@ -220,7 +220,7 @@ describe('Dashboard', () => {
cy.contains('button', 'Done Editing').click();
cy.logout();
cy.visit(secretAddress);
cy.getByTestId('DynamicTable', { timeout: 10000 }).should('exist');
cy.getByTestId('TableVisualization', { timeout: 10000 }).should('exist');
cy.percySnapshot('Successfully Shared Parameterized Dashboard With Some Unsafe Queries');
});
});
Expand Down