Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [M3-8905] - Change document title from address to appropriate keyword #11385

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-11385-fixed-1733735480951.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Document title from URL to appropriate keyword ([#11385](https://github.com/linode/manager/pull/11385))
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 @@ -10,6 +10,7 @@ import { debounce } from 'throttle-debounce';

import { ActionsPanel } from 'src/components/ActionsPanel/ActionsPanel';
import { ConfirmationDialog } from 'src/components/ConfirmationDialog/ConfirmationDialog';
import { DocumentTitleSegment } from 'src/components/DocumentTitle';
import { Hidden } from 'src/components/Hidden';
import { Table } from 'src/components/Table';
import { TableBody } from 'src/components/TableBody';
Expand Down Expand Up @@ -378,6 +379,7 @@ export const BucketDetail = (props: Props) => {

return (
<>
<DocumentTitleSegment segment={bucketName + ' | Bucket'} />
<BucketBreadcrumb
bucketName={bucketName}
history={history}
Expand Down Expand Up @@ -439,7 +441,6 @@ export const BucketDetail = (props: Props) => {
</StyledTryAgainButton>
</StyledErrorFooter>
)}

{!hasNextPage && numOfDisplayedObjects >= 100 && (
<StyledFooter variant="subtitle2">
Showing all {numOfDisplayedObjects} items
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { CircleProgress } from '@linode/ui';
import * as React from 'react';
import { useHistory, useLocation, useParams } from 'react-router-dom';

import { DocumentTitleSegment } from 'src/components/DocumentTitle';
import { LandingHeader } from 'src/components/LandingHeader';
import { NotFound } from 'src/components/NotFound';
import { StackScript as _StackScript } from 'src/components/StackScript/StackScript';
Expand Down Expand Up @@ -114,6 +115,7 @@ export const StackScriptsDetail = () => {

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