We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b51a15 commit 05a0659Copy full SHA for 05a0659
selector/src/notebook-metadata/notebook-metadata-collector.js
@@ -68,7 +68,7 @@ export class NotebookMetadataCollector extends NotebookContentReader {
68
_getDocsLink() {
69
const { latestDocsNotebooks, latestOVReleaseTag } = docsNotebooks;
70
const notebookFileName = this._notebookFileName.replace('.ipynb', '');
71
- const docsVersion = latestOVReleaseTag.split('.').slice(0, 2).join('.');
+ const docsVersion = latestOVReleaseTag.split('.').slice(0, 2)[0];
72
const docsUrl = `https://docs.openvino.ai/${docsVersion}/notebooks/${notebookFileName}-with-output.html`;
73
return latestDocsNotebooks.includes(this._notebookFilePath) ? docsUrl : null;
74
}
0 commit comments