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
3 changes: 2 additions & 1 deletion src/types/api/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ export type AutocompleteEntityType =
| 'external_data_source'
| 'view'
| 'column'
| 'index';
| 'index'
| 'streaming_query';
1 change: 1 addition & 0 deletions src/utils/monaco/yql/generateSuggestions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const suggestionEntityToAutocomplete: Partial<Record<YQLEntity, AutocompleteEnti
topic: ['pers_queue_group'],
view: ['view'],
tableIndex: ['table_index', 'index'],
streamingQuery: ['streaming_query'],
};

const commonSuggestionEntities: AutocompleteEntityType[] = ['dir', 'unknown', 'ext_sub_domain'];
Expand Down
2 changes: 1 addition & 1 deletion tests/suites/sidebar/sidebar.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ test.describe('Test Sidebar', async () => {

// Press Ctrl+K to open hotkeys panel
await page.keyboard.press('Control+k');
await page.waitForTimeout(500); // Wait for animation
await page.waitForTimeout(1000); // Wait for animation

// Check if hotkeys panel is visible and has the title
await expect(sidebar.isHotkeysPanelVisible()).resolves.toBe(true);
Expand Down
Loading