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 87c5088 commit 291dac8Copy full SHA for 291dac8
packages/docprovider-extension/src/filebrowser.ts
@@ -234,11 +234,7 @@ export const statusBarTimeline: JupyterFrontEndPlugin<void> = {
234
typeof currentWidget.context.path === 'string'
235
) {
236
const documentPath = currentWidget.context.path;
237
- const documentId =
238
- currentWidget.context.model.sharedModel.getState(
239
- 'document_id'
240
- ) as string;
241
- return !!documentId && documentPath.split(':')[0] === 'RTC';
+ return documentPath.split(':')[0] === 'RTC';
242
}
243
return false;
244
0 commit comments