We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe7681 commit 3343209Copy full SHA for 3343209
src/notebooks/deepnote/sqlCellStatusBarProvider.ts
@@ -291,14 +291,14 @@ export class SqlCellStatusBarProvider implements NotebookCellStatusBarItemProvid
291
id: DATAFRAME_SQL_INTEGRATION_ID
292
} as QuickPickItem & { id: string });
293
294
- // Add separator
295
- items.push({
296
- label: '',
297
- kind: QuickPickItemKind.Separator
298
- });
299
-
300
- // Add "Configure current integration" option
+ // Add "Configure current integration" option (with separator)
301
if (currentIntegrationId && currentIntegrationId !== DATAFRAME_SQL_INTEGRATION_ID) {
+ // Add separator
+ items.push({
+ label: '',
+ kind: QuickPickItemKind.Separator
+ });
+
302
items.push({
303
label: l10n.t('Configure current integration'),
304
id: '__configure__'
0 commit comments