dashboard: show checklist items in postinstall dialog

This commit is contained in:
Johannes Zellner
2024-05-20 18:04:02 +02:00
parent 4ce9c46215
commit 0c80b7af1d
3 changed files with 13 additions and 1 deletions

View File

@@ -587,7 +587,7 @@ function removeInternalFields(app) {
// non-admins can only see these
function removeRestrictedFields(app) {
const result = _.pick(app,
'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId', 'accessRestriction',
'id', 'appStoreId', 'installationState', 'error', 'runState', 'health', 'taskId', 'accessRestriction', 'checklist',
'secondaryDomains', 'redirectDomains', 'aliasDomains', 'sso', 'subdomain', 'domain', 'fqdn', 'certificate',
'manifest', 'portBindings', 'iconUrl', 'creationTime', 'ts', 'tags', 'label', 'notes', 'enableBackup', 'upstreamUri');