Skip to content

Commit 8f800dc

Browse files
committed
description changes
1 parent 277b3c2 commit 8f800dc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

clients/ui/frontend/src/app/pages/modelRegistry/screens/ModelVersionDetails/ModelVersionDetailsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ const ModelVersionDetailsView: React.FC<ModelVersionDetailsViewProps> = ({
263263
{mv.author}
264264
</DashboardDescriptionListGroup>
265265
<DashboardDescriptionListGroup
266-
title="Last modified at"
266+
title="Last modified"
267267
isEmpty={!mv.lastUpdateTimeSinceEpoch}
268268
contentWhenEmpty="Unknown"
269269
>

clients/ui/frontend/src/app/pages/modelRegistry/screens/ModelVersions/ModelDetailsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ const ModelDetailsView: React.FC<ModelDetailsViewProps> = ({
100100
</Content>
101101
</DashboardDescriptionListGroup>
102102
<DashboardDescriptionListGroup
103-
title="Last modified at"
103+
title="Last modified"
104104
isEmpty={!rm.lastUpdateTimeSinceEpoch}
105105
contentWhenEmpty="Unknown"
106106
>
107107
<ModelTimestamp timeSinceEpoch={rm.lastUpdateTimeSinceEpoch} />
108108
</DashboardDescriptionListGroup>
109109
<DashboardDescriptionListGroup
110-
title="Created at"
110+
title="Created"
111111
isEmpty={!rm.createTimeSinceEpoch}
112112
contentWhenEmpty="Unknown"
113113
>

clients/ui/frontend/src/app/pages/modelRegistry/screens/RegisterModel/RegisterModel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const RegisterModel: React.FC = () => {
7878
return (
7979
<ApplicationsPage
8080
title="Register model"
81-
description="Create a new model and register the first version of your new model."
81+
description="Create and register the first version of a new model."
8282
breadcrumb={
8383
<Breadcrumb>
8484
<BreadcrumbItem

clients/ui/frontend/src/app/pages/modelRegistry/screens/RegisterModel/RegisterModelDetailsFormSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const RegisterModelDetailsFormSection = <D extends RegisterModelFormData>({
4949
return (
5050
<FormSection
5151
title="Model details"
52-
description="Provide general details that apply to all versions of this model."
52+
description="Provide model details that apply to every version of this model."
5353
>
5454
<FormGroup label="Model name" isRequired fieldId="model-name">
5555
<FormFieldset component={modelNameInput} />

clients/ui/frontend/src/app/pages/modelRegistry/screens/RegisterModel/RegistrationCommonFormSections.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ const RegistrationCommonFormSections = <D extends RegistrationCommonFormData>({
176176
title="Version details"
177177
description={
178178
isFirstVersion
179-
? 'Configure details for the first version of this model.'
179+
? 'Provide version details that apply to only this model version.'
180180
: 'Configure details for the version of this model.'
181181
}
182182
>

0 commit comments

Comments
 (0)