mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
add fullscreen prop (#18309)
Signed-off-by: Fluder-Paradyne <121793617+Fluder-Paradyne@users.noreply.github.com>
This commit is contained in:
parent
441367ff52
commit
43cb8003d1
3 changed files with 4 additions and 0 deletions
1
USERS.md
1
USERS.md
|
|
@ -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/)
|
||||
|
|
|
|||
|
|
@ -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`} />
|
||||
|
|
@ -28,6 +29,7 @@ export const ApplicationFullscreenLogs = (props: RouteComponentProps<{name: stri
|
|||
kind={kind}
|
||||
name={name}
|
||||
podName={podName}
|
||||
fullscreen={fullscreen}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue