Skip to content

Commit

Permalink
We need to provide simple name for bisect not FQN
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Sep 12, 2024
1 parent 55781dc commit 110d9da
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ if (Array.isArray(changesUnmerged)) {
lastCommit.value = changesUnmerged[0] ?? null
}
const methodName = data.description.value?.methodName ?? ""
const className = methodName.slice(0, Math.max(0, methodName.lastIndexOf("#")))
const fullClassName = methodName.slice(0, Math.max(0, methodName.lastIndexOf("#")))
const className = fullClassName.slice(fullClassName.lastIndexOf(".") + 1)
const targetValue: Ref<string | null> = ref(null)
const bisectClient = new BisectClient(serverConfigurator)
Expand Down

0 comments on commit 110d9da

Please sign in to comment.