Skip to content

Commit

Permalink
rename column: NamePod
Browse files Browse the repository at this point in the history
commit_hash:58f39a933ee10feb5926fd59858e6c9d85409fc7
  • Loading branch information
redotter84 committed Feb 4, 2025
1 parent a1b974b commit 411e719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perforator/ui/src/components/ProfileTable/ProfileTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const prepareProfileColumns = ({ compact }: { compact?: boolean } = {}) => {
},
{
id: 'ProfileID',
name: 'ProfileID',
name: 'Profile ID',
template: (profile: Profile) => {
const href = `/profile/${profile.ProfileID}?timestamp=${parseDate(profile.Timestamp ?? '')!.valueOf()}`;
return renderLink(href, profile.ProfileID, true);
Expand Down
2 changes: 1 addition & 1 deletion perforator/ui/src/factory/UIFactory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class UIFactory {

clusterName = () => 'Zone';
serviceName = () => 'Service';
podName = () => 'Name';
podName = () => 'Pod';
nodeName = () => 'Node';

makeServiceUrl = (cluster: string, service: Optional<string>): Optional<string> => undefined;
Expand Down

0 comments on commit 411e719

Please sign in to comment.