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 7648ef9 commit a9013b2Copy full SHA for a9013b2
1 file changed
app/components/Package/InstallScripts.vue
@@ -15,14 +15,13 @@ const props = defineProps<{
15
function getCodeLink(filePath: string): RouteLocationRaw {
16
const split = props.packageName.split('/')
17
18
- console.log({ split })
19
return {
20
name: 'code',
21
params: {
22
org: split.length === 2 ? split[0] : null,
23
packageName: split.length === 2 ? split[1]! : split[0]!,
24
version: props.version,
25
- filePath: '',
+ filePath: filePath,
26
},
27
}
28
0 commit comments