From 46fd4c54b62f281a089eef1af54538567410cce7 Mon Sep 17 00:00:00 2001 From: Justin Mclean Date: Thu, 30 Jan 2025 15:07:08 +1100 Subject: [PATCH 1/2] aliase -> .alias --- .../metalake/rightContent/LinkVersionDialog.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/web/src/app/metalakes/metalake/rightContent/LinkVersionDialog.js b/web/web/src/app/metalakes/metalake/rightContent/LinkVersionDialog.js index 01ea35b0c69..cd8ab59ef5c 100644 --- a/web/web/src/app/metalakes/metalake/rightContent/LinkVersionDialog.js +++ b/web/web/src/app/metalakes/metalake/rightContent/LinkVersionDialog.js @@ -66,13 +66,13 @@ const schema = yup.object().shape({ yup.object().shape({ name: yup .string() - .required('This aliase is required') - .test('not-number', 'Aliase cannot be a number or numeric string', value => { + .required('The alias is required') + .test('not-number', 'Alias cannot be a number or a numeric string', value => { return value === undefined || isNaN(Number(value)) }) }) ) - .test('unique', 'Aliase must be unique', (aliases, ctx) => { + .test('unique', 'Alias must be unique', (aliases, ctx) => { const values = aliases?.filter(a => !!a.name).map(a => a.name) const duplicates = values.filter((value, index, self) => self.indexOf(value) !== index) @@ -81,7 +81,7 @@ const schema = yup.object().shape({ return ctx.createError({ path: `aliases.${duplicateIndex}.name`, - message: 'This aliase is duplicated' + message: 'This alias is duplicated' }) } @@ -326,7 +326,7 @@ const LinkVersionDialog = props => { field.onChange(event) trigger('aliases') }} - label={`Aliase ${index + 1}`} + label={`Alias ${index + 1}`} error={!!errors.aliases?.[index]?.name || !!errors.aliases?.message} helperText={errors.aliases?.[index]?.name?.message || errors.aliases?.message} fullWidth From 47c3cae93844d1b66e00cf7922a490aec0d6ec47 Mon Sep 17 00:00:00 2001 From: Justin Mclean Date: Thu, 30 Jan 2025 15:16:39 +1100 Subject: [PATCH 2/2] also fix docs --- docs/webui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/webui.md b/docs/webui.md index cf079d3f1cc..ce3250a239b 100644 --- a/docs/webui.md +++ b/docs/webui.md @@ -680,7 +680,7 @@ Click on the `LINK VERSION` button displays the dialog to link a version. Link a version needs these fields: 1. **URI**(**_required_**): the uri of the version. -2. **Aliases**(**_required_**): the aliases of the version, aliase cannot be number or number string. +2. **Aliases**(**_required_**): the aliases of the version, an alias cannot be a number or number string. 3. **Comment**(_optional_): the comment of the model. 4. **Properties**(_optional_): Click on the `ADD PROPERTY` button to add custom properties.