From 783eb151a238fcc75c6a9b1410418c999b17d3ae Mon Sep 17 00:00:00 2001 From: Sayak Mukhopadhyay Date: Tue, 17 Jan 2023 20:11:05 +0530 Subject: [PATCH] fix: docs with wrong identifiers Signed-off-by: Sayak Mukhopadhyay --- .../software-templates/writing-custom-field-extensions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/software-templates/writing-custom-field-extensions.md b/docs/features/software-templates/writing-custom-field-extensions.md index be00453795..3bbe4777fb 100644 --- a/docs/features/software-templates/writing-custom-field-extensions.md +++ b/docs/features/software-templates/writing-custom-field-extensions.md @@ -94,14 +94,14 @@ import { createScaffolderFieldExtension, } from '@backstage/plugin-scaffolder'; import { - ValidateKebabCase, + ValidateKebabCaseExtension, validateKebabCaseValidation, } from './ValidateKebabCase'; export const ValidateKebabCaseFieldExtension = scaffolderPlugin.provide( createScaffolderFieldExtension({ name: 'ValidateKebabCase', - component: ValidateKebabCase, + component: ValidateKebabCaseExtension, validation: validateKebabCaseValidation, }), ); @@ -173,7 +173,7 @@ spec: title: Name type: string description: My custom name for the component - ui:field: ValidateKebabCaseExtension + ui:field: ValidateKebabCase steps: [...] ```