refactor(cli): update references to component name
Update the functions `getComponentURL` and `getComponentRealname` in the CLI helper `registry.ts` to access the component name through the 'name' property of each component object in the registry, instead of directly accessing the component name.
This commit is contained in:
parent
303d6b31e7
commit
090fada7cd
@ -21,12 +21,12 @@ export async function getAvailableComponentNames(registry: Registry): Promise<st
|
||||
}
|
||||
|
||||
export async function getComponentURL(registry: Registry, componentName: string): Promise<string> {
|
||||
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName])
|
||||
return registry.base + registry.paths.components.replace('{componentName}', registry.components[componentName].name)
|
||||
}
|
||||
|
||||
export async function getComponentRealname(
|
||||
registry: Registry,
|
||||
componentName: keyof Registry['components'],
|
||||
): Promise<string> {
|
||||
return registry.components[componentName]
|
||||
return registry.components[componentName].name
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user