Skip to content

Commit

Permalink
Merge branch 'main' into branches-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sroy3 authored May 17, 2023
2 parents 46d9a46 + 9984f04 commit 28f27cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion extension/src/experiments/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { DecorationProvider } from './model/decorationProvider'
import { starredFilter } from './model/filterBy/constants'
import { ResourceLocator } from '../resourceLocator'
import { AvailableCommands, InternalCommands } from '../commands/internal'
import { ExpShowOutput } from '../cli/dvc/contract'
import { EXPERIMENT_WORKSPACE_ID, ExpShowOutput } from '../cli/dvc/contract'
import { ViewKey } from '../webview/constants'
import { BaseRepository } from '../webview/repository'
import { Title } from '../vscode/title'
Expand Down Expand Up @@ -574,6 +574,9 @@ export class Experiments extends BaseRepository<TableData> {
}
let output = ''
for (const commit of data) {
if (commit.rev === EXPERIMENT_WORKSPACE_ID) {
continue
}
output += await this.internalCommands.executeCommand(
AvailableCommands.GIT_GET_COMMIT_MESSAGES,
this.dvcRoot,
Expand Down

0 comments on commit 28f27cd

Please sign in to comment.