Skip to content

Commit f716b30

Browse files
fix: replaced apl-docs with techdocs
1 parent c90319d commit f716b30

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

src/components/ObjWizardModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default function StyledModal() {
131131
/>
132132
<Typography variant='body2' mt={2}>
133133
<Link
134-
href='https://apl-docs.net/docs/get-started/installation/akamai-connected-cloud#provision-object-storage-for-the-application-platform'
134+
href='https://techdocs.akamai.com/app-platform/docs/lke-automatic-install#provision-object-storage-for-the-app-platform'
135135
target='_blank'
136136
rel='noopener'
137137
>

src/components/rjsf/Form.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ export default function ({
9494
const initialNameRef = useRef(data?.[nameProp]) // Store initial name once
9595
const initialName = initialNameRef.current // Always refer to the initial name
9696
const docUrl =
97-
schema && schema['x-externalDocsPath'] ? `https://apl-docs.net/${schema['x-externalDocsPath']}` : undefined
97+
schema && schema['x-externalDocsPath']
98+
? `https://techdocs.akamai.com/app-platform/docs/${schema['x-externalDocsPath']}`
99+
: undefined
98100
const keepValues = [[{}]] // rjsf structs that open parts of the form, may not be stripped
99101
const onChangeWrapper = ({ formData, errors }: IChangeEvent<Record<string, unknown>>) => {
100102
// lets check if form data is dirty (has meaningful changes)

src/components/rjsf/ObjectFieldTemplate.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export default function (props: ObjectFieldTemplateProps): React.ReactElement {
4242
const type = getSchemaType(schema)
4343
if (type === 'boolean' && !inSkipTitle) return
4444
const docUrl =
45-
schema && schema['x-externalDocsPath'] ? `https://apl-docs.net/${schema['x-externalDocsPath']}` : undefined
45+
schema && schema['x-externalDocsPath']
46+
? `https://techdocs.akamai.com/app-platform/docs/${schema['x-externalDocsPath']}`
47+
: undefined
4648
// we may get the title from the following:
4749
// const displayTitle = title
4850
const displayTitle =

src/pages/builds/create-edit/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export default function CreateEditBuilds({
161161
<PaperLayout loading={isLoading} title={t('TITLE_CONTAINER_IMAGE', { buildName, role: 'team' })}>
162162
<LandingHeader
163163
docsLabel='Docs'
164-
docsLink='https://apl-docs.net/docs/for-devs/console/container-images'
164+
docsLink='https://techdocs.akamai.com/app-platform/docs/team-container-images'
165165
title={buildName ? buildData.name : 'Create'}
166166
// hides the first two crumbs (e.g. /teams/teamName)
167167
hideCrumbX={[0, 1]}

src/pages/code-repositories/create-edit/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export default function CreateEditCodeRepositories({
207207
<PaperLayout loading={loading || error} title={t('TITLE_CODE_REPOSITORY')}>
208208
<LandingHeader
209209
docsLabel='Docs'
210-
docsLink='https://apl-docs.net/docs/for-devs/console/code-repositories'
210+
docsLink='https://techdocs.akamai.com/app-platform/docs/code-repositories'
211211
title={codeRepositoryName ? data.name : 'Add'}
212212
// hides the first two crumbs (e.g. /teams/teamName)
213213
hideCrumbX={[0, 1]}

src/pages/secrets/create-edit/SecretCreateEditPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export default function SecretCreateEditPage({
231231
<PaperLayout loading={loading || error} title={t('TITLE_SEALEDSECRET', { sealedSecretName, role: 'team' })}>
232232
<LandingHeader
233233
docsLabel='Docs'
234-
docsLink='https://apl-docs.net/docs/for-devs/console/secrets'
234+
docsLink='https://techdocs.akamai.com/app-platform/docs/team-secrets'
235235
title={sealedSecretName ? data.name : 'Create'}
236236
// hides the first two crumbs (e.g. /teams/teamName)
237237
hideCrumbX={[0, 1]}

src/pages/services/create-edit/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export default function ({
208208
<PaperLayout loading={loading || error} title={t('TITLE_SERVICE')}>
209209
<LandingHeader
210210
docsLabel='Docs'
211-
docsLink='https://apl-docs.net/docs/for-devs/console/services'
211+
docsLink='https://techdocs.akamai.com/app-platform/docs/team-services'
212212
title={serviceName ? data.metadata.name : 'Create'}
213213
// hides the first two crumbs (e.g. /teams/teamName)
214214
hideCrumbX={[0, 1]}

src/pages/teams/create-edit/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export default function CreateEditTeams({
157157
<Grid className={classes.root}>
158158
<PaperLayout>
159159
<LandingHeader
160-
docsLabel='https://apl-docs.net/docs/for-ops/console/teams'
160+
docsLabel='https://techdocs.akamai.com/app-platform/docs/platform-teams'
161161
title={themeView === 'team' ? `${teamId} Settings` : teamId || 'Create'}
162162
// hides the first crumb for the teamSettings page (e.g. /teams)
163163
hideCrumbX={themeView === 'team' ? [0] : []}

0 commit comments

Comments
 (0)