in ui/src/shared/parse-app-info.ts [53:70]
export function getAppDetails(images, info) {
// Extract the application repository
const appRepository = parseAppRepository(info);
console.info(appRepository)
// Extract the image repository
const imageRepository = parseImageRepository(info);
// Find the matching image
const imageTag = findMatchingImage(images, imageRepository);
// Return both values as an object
return {
appRepository,
imageTag,
};
}