Remove further usages of plugin versions

This commit is contained in:
Andrew Kingston 2022-09-02 19:52:52 +01:00
parent f2dd8bff02
commit b20f6b3d33
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
{#if $selectedComponent}
{#key $selectedComponent._id}
<Panel {title} icon={componentDefinition.icon} borderLeft>
<Panel {title} icon={componentDefinition?.icon} borderLeft>
<ComponentSettingsSection
{componentInstance}
{componentDefinition}

View File

@ -144,7 +144,7 @@ const createComponentStore = () => {
if (!Component || !schema?.schema?.name) {
return
}
const component = `plugin/${schema.schema.name}/${version}`
const component = `plugin/${schema.schema.name}`
store.update(state => {
state.customComponentManifest[component] = {
Component,

View File

@ -46,7 +46,7 @@ exports.fetchAppComponentDefinitions = async function (ctx) {
.map(row => row.doc)
.filter(plugin => plugin.schema.type === "component")
.forEach(plugin => {
const fullComponentName = `plugin/${plugin.name}/${plugin.version}`
const fullComponentName = `plugin/${plugin.name}`
definitions[fullComponentName] = {
component: fullComponentName,
...plugin.schema.schema,