api: Update pull.sh, regenerate schemas and fix errors
This adds missing schema links to the `pull.sh` script, pulls new schema definitions, re-generates schemas and updates the code where needed.
This commit is contained in:
parent
0b1abb57b9
commit
855f1430ad
17 changed files with 6320 additions and 5881 deletions
|
|
@ -88,7 +88,7 @@ const AzureSourceName = ({ id }: AzureSourceNamePropTypes) => {
|
|||
|
||||
const sources = extractProvisioningList(rawSources);
|
||||
|
||||
const sourcename = sources?.find((source) => source.id === id);
|
||||
const sourcename = sources?.find((source) => source?.id === id);
|
||||
if (sourcename) {
|
||||
return <p>{sourcename.name}</p>;
|
||||
}
|
||||
|
|
@ -111,7 +111,7 @@ const AwsSourceName = ({ id }: AwsSourceNamePropTypes) => {
|
|||
|
||||
const sources = extractProvisioningList(rawSources);
|
||||
|
||||
const sourcename = sources?.find((source) => source.id === id);
|
||||
const sourcename = sources?.find((source) => source?.id === id);
|
||||
if (sourcename) {
|
||||
return <p>{sourcename.name}</p>;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -390,6 +390,7 @@ export const AwsS3Instance = ({
|
|||
'rhel-edge-installer': '',
|
||||
vhd: '',
|
||||
oci: '',
|
||||
'openshift-virt': '.tar',
|
||||
};
|
||||
|
||||
const status = composeStatus?.image_status.status;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue