fix(k8s): Changed 'Deploy from file' button text to 'Deploy from code' (#338)

pull/12512/head
James Player 2025-01-23 16:47:52 +13:00 committed by GitHub
parent 9a86737caa
commit ebffc340d9
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<page-header ng-if="ctrl.state.viewReady" title="'Create from file'" breadcrumbs="['Deploy Kubernetes resources']" reload="true"></page-header>
<page-header ng-if="ctrl.state.viewReady" title="'Create from code'" breadcrumbs="['Deploy Kubernetes resources']" reload="true"></page-header>
<kubernetes-view-loading view-ready="ctrl.state.viewReady"></kubernetes-view-loading>

View File

@ -7,7 +7,7 @@ export function HelmInsightsBox() {
content={
<span>
From 2.20 and on, the Helm menu sidebar option has moved to the{' '}
<strong>Create from file screen</strong> - accessed via the button
<strong>Create from code screen</strong> - accessed via the button
above.
</span>
}

View File

@ -18,7 +18,7 @@ export function CreateFromManifestButton({
}}
data-cy={dataCy}
>
Create from file
Create from code
</AddButton>
);
}

View File

@ -94,7 +94,7 @@ function HelmDatatableDescription({ isAdmin }: { isAdmin: boolean }) {
) : (
<span>globally-set Helm repo</span>
)}
) and shown in the Create from file screen&apos;s Helm charts list.
) and shown in the Create from code screen&apos;s Helm charts list.
</TextTip>
);
}