Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@gravity-ui/paranoid": "^3.0.0",
"@gravity-ui/react-data-table": "^2.2.1",
"@gravity-ui/table": "^1.10.1",
"@gravity-ui/uikit": "^7.22.0",
"@gravity-ui/uikit": "^7.23.0",
"@gravity-ui/unipika": "^5.2.1",
"@gravity-ui/websql-autocomplete": "^13.7.0",
"@hookform/resolvers": "^3.10.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/TableColumnSetup/TableColumnSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ export function TableColumnSetup(props: TableColumnSetupProps) {
);
};

return <TableColumnSetupUikit {...props} renderSwitcher={renderSwitcher} />;
return <TableColumnSetupUikit {...props} renderSwitcher={renderSwitcher} hideApplyButton />;
}
3 changes: 0 additions & 3 deletions tests/suites/bridge/bridge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ test.describe('Bridge mode - Nodes table', () => {
const table = new ClusterNodesTable(page);
await table.getControls().openColumnSetup();
await table.getControls().setColumnChecked('PileName');
await table.getControls().applyColumnVisibility();
await table.waitForTableToLoad();
const headers = await table.getHeaders();
expect(headers.join(' ')).toContain('Pile Name');
Expand All @@ -49,7 +48,6 @@ test.describe('Bridge mode - Storage nodes', () => {
const table = new ClusterStorageTable(page);
await table.getControls().openColumnSetup();
await table.getControls().setColumnChecked('PileName');
await table.getControls().applyColumnVisibility();
await table.waitForTableToLoad();
const headers = await table.getHeaders();
expect(headers.join(' ')).toContain('Pile Name');
Expand All @@ -75,7 +73,6 @@ test.describe('Bridge mode - Storage groups', () => {
const table = new ClusterStorageTable(page);
await table.getControls().openColumnSetup();
await table.getControls().setColumnChecked('PileName');
await table.getControls().applyColumnVisibility();
await table.waitForTableToLoad();
const headers = await table.getHeaders();
expect(headers.join(' ')).toContain('Pile Name');
Expand Down
1 change: 0 additions & 1 deletion tests/suites/memoryViewer/memoryViewer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ test.describe('Memory Viewer Widget', () => {
const controls = paginatedTable.getControls();
await controls.openColumnSetup();
await controls.setColumnChecked('Memory');
await controls.applyColumnVisibility();
}
await memoryViewer.waitForVisible();
});
Expand Down
6 changes: 0 additions & 6 deletions tests/suites/paginatedTable/paginatedTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,6 @@ export class TableControls {
}
}

async applyColumnVisibility() {
const applyButton = this.columnSetupPopup.locator('button:has-text("Apply")');
await applyButton.click();
await this.columnSetupPopup.waitFor({state: 'hidden'});
}

async getVisibleColumnsCount(): Promise<string> {
const statusText = await this.columnSetupButton
.locator('.g-table-column-setup__status')
Expand Down
1 change: 0 additions & 1 deletion tests/suites/tenant/diagnostics/tabs/nodes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ test.describe('Diagnostics Nodes tab', async () => {
const controls = paginatedTable.getControls();
await controls.openColumnSetup();
await controls.setColumnChecked('Memory');
await controls.applyColumnVisibility();

// Check memory viewer is present and visible
await diagnostics.memoryViewer.waitForVisible();
Expand Down
Loading