Feroze Mohideen 2 лет назад
Родитель
Сommit
c57c41bcef

+ 1 - 0
dashboard/src/main/home/app-dashboard/expanded-app/logs/LogSection.tsx

@@ -146,6 +146,7 @@ const LogSection: React.FC<Props> = ({
       displayName: "Output Stream",
       default: GenericLogFilter.getDefaultOption("output_stream"),
       options: [
+        GenericFilterOption.of('stdout', 'stdout'),
         GenericFilterOption.of("stderr", "stderr"),
       ],
       setValue: (value: string) => {

+ 1 - 1
dashboard/src/main/home/app-dashboard/expanded-app/logs/types.ts

@@ -60,7 +60,7 @@ export const GenericLogFilter = {
             case 'revision':
                 return GenericFilterOption.of('All', 'all');
             case 'output_stream':
-                return GenericFilterOption.of('stdout', 'stdout');
+                return GenericFilterOption.of('All', 'all');
             case 'pod_name':
                 return GenericFilterOption.of('All', 'all');
             default: