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 e7b71dd commit 55af56bCopy full SHA for 55af56b
src/lib/sources/hyperparamSource.ts
@@ -16,6 +16,9 @@ function canParse(sourceId: string): boolean {
16
17
function getSourceParts(sourceId: string): SourcePart[] {
18
const parts = sourceId.split('/')
19
+ if (parts[parts.length - 1] === '') {
20
+ parts.pop()
21
+ }
22
return [
23
{ 'text': '/', 'sourceId': '' },
24
...parts.map((part, depth) => {
0 commit comments