Skip to content

Commit

Permalink
add fullscreen prop (argoproj#18309)
Browse files Browse the repository at this point in the history
Signed-off-by: Fluder-Paradyne <[email protected]>
Signed-off-by: rumstead <[email protected]>
  • Loading branch information
Fluder-Paradyne authored and rumstead committed Jun 6, 2024
1 parent d659d86 commit 8ff9949
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions USERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Currently, the following organizations are **officially** using Argo CD:
1. [Codefresh](https://www.codefresh.io/)
1. [Codility](https://www.codility.com/)
1. [Commonbond](https://commonbond.co/)
1. [Contlo](https://contlo.com/)
1. [Coralogix](https://coralogix.com/)
1. [Crédit Agricole CIB](https://www.ca-cib.com)
1. [CROZ d.o.o.](https://croz.net/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const ApplicationFullscreenLogs = (props: RouteComponentProps<{name: stri
const group = q.get('group');
const kind = q.get('kind');
const title = `${podName || `${group}/${kind}/${name}`}:${props.match.params.container}`;
const fullscreen = true;
return (
<div className='application-fullscreen-logs'>
<Helmet title={`${title} - Argo CD`} />
Expand All @@ -28,6 +29,7 @@ export const ApplicationFullscreenLogs = (props: RouteComponentProps<{name: stri
kind={kind}
name={name}
podName={podName}
fullscreen={fullscreen}
/>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export interface PodLogsProps {
timestamp?: string;
containerGroups?: any[];
onClickContainer?: (group: any, i: number, tab: string) => void;
fullscreen?: boolean;
}

// ansi colors, see https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
Expand Down

0 comments on commit 8ff9949

Please sign in to comment.