Photograph the runs screen and a dashboard read against runs
This commit is contained in:
@@ -2491,6 +2491,11 @@ export const RunDetailSchema = {
|
||||
title: 'Origin Commit',
|
||||
default: ''
|
||||
},
|
||||
commit: {
|
||||
type: 'string',
|
||||
title: 'Commit',
|
||||
default: ''
|
||||
},
|
||||
seed: {
|
||||
anyOf: [
|
||||
{
|
||||
@@ -2542,11 +2547,6 @@ export const RunDetailSchema = {
|
||||
type: 'object',
|
||||
title: 'Result'
|
||||
},
|
||||
commit: {
|
||||
type: 'string',
|
||||
title: 'Commit',
|
||||
default: ''
|
||||
},
|
||||
flow_version: {
|
||||
type: 'integer',
|
||||
title: 'Flow Version',
|
||||
@@ -3619,6 +3619,11 @@ export const fluksio__api__routes__runs__RunRowSchema = {
|
||||
title: 'Origin Commit',
|
||||
default: ''
|
||||
},
|
||||
commit: {
|
||||
type: 'string',
|
||||
title: 'Commit',
|
||||
default: ''
|
||||
},
|
||||
seed: {
|
||||
anyOf: [
|
||||
{
|
||||
|
||||
@@ -426,6 +426,7 @@ export type fluksio__api__routes__runs__RunRow = {
|
||||
};
|
||||
params_digest: string;
|
||||
origin_commit?: string;
|
||||
commit?: string;
|
||||
seed: (number | null);
|
||||
group_id: (string | null);
|
||||
labels: Array<(string)>;
|
||||
@@ -898,6 +899,7 @@ export type RunDetail = {
|
||||
};
|
||||
params_digest: string;
|
||||
origin_commit?: string;
|
||||
commit?: string;
|
||||
seed: (number | null);
|
||||
group_id: (string | null);
|
||||
labels: Array<(string)>;
|
||||
@@ -909,7 +911,6 @@ export type RunDetail = {
|
||||
result?: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
commit?: string;
|
||||
flow_version?: number;
|
||||
nodes?: Array<RunNodeRow>;
|
||||
artifacts?: Array<ArtifactRow>;
|
||||
|
||||
Reference in New Issue
Block a user