File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
extension/src/experiments Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ import { DecorationProvider } from './model/decorationProvider'
4242import { starredFilter } from './model/filterBy/constants'
4343import { ResourceLocator } from '../resourceLocator'
4444import { AvailableCommands , InternalCommands } from '../commands/internal'
45- import { ExpShowOutput } from '../cli/dvc/contract'
45+ import { EXPERIMENT_WORKSPACE_ID , ExpShowOutput } from '../cli/dvc/contract'
4646import { ViewKey } from '../webview/constants'
4747import { BaseRepository } from '../webview/repository'
4848import { Title } from '../vscode/title'
@@ -574,6 +574,9 @@ export class Experiments extends BaseRepository<TableData> {
574574 }
575575 let output = ''
576576 for ( const commit of data ) {
577+ if ( commit . rev === EXPERIMENT_WORKSPACE_ID ) {
578+ continue
579+ }
577580 output += await this . internalCommands . executeCommand (
578581 AvailableCommands . GIT_GET_COMMIT_MESSAGES ,
579582 this . dvcRoot ,
You can’t perform that action at this time.
0 commit comments