Skip to content

Commit

Permalink
fix: [M3-8905] - Change document title from address to appropriate ke…
Browse files Browse the repository at this point in the history
…yword
  • Loading branch information
hasyed-akamai committed Dec 9, 2024
1 parent 1072d54 commit 1c7f9d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/manager/src/features/Domains/DomainsLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ export const DomainsLanding = (props: DomainsLandingProps) => {
if (domains?.results === 0) {
return (
<>
<DocumentTitleSegment segment="Domains" />
<DomainsEmptyLandingState
navigateToCreate={navigateToCreate}
openImportZoneDrawer={openImportZoneDrawer}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ import type {
ObjectStorageObjectList,
} from '@linode/api-v4';
import type { InfiniteData } from '@tanstack/react-query';
import { DocumentTitleSegment } from 'src/components/DocumentTitle';

interface MatchParams {
bucketName: string;
Expand Down Expand Up @@ -378,6 +379,7 @@ export const BucketDetail = (props: Props) => {

return (
<>
<DocumentTitleSegment segment={bucketName} />
<BucketBreadcrumb
bucketName={bucketName}
history={history}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {

import type { StackScript } from '@linode/api-v4/lib/stackscripts';
import type { APIError } from '@linode/api-v4/lib/types';
import { DocumentTitleSegment } from 'src/components/DocumentTitle';

export const StackScriptsDetail = () => {
const { _hasGrant, _isRestrictedUser, profile } = useAccountManagement();
Expand Down Expand Up @@ -114,6 +115,7 @@ export const StackScriptsDetail = () => {

return (
<>
<DocumentTitleSegment segment={stackScript.label} />
<LandingHeader
breadcrumbProps={{
crumbOverrides: [
Expand Down

0 comments on commit 1c7f9d4

Please sign in to comment.