Skip to content

Commit

Permalink
Mikael Solstad <[email protected]> updated altinn-app-front…
Browse files Browse the repository at this point in the history
…end to 3.67.0

based on commit Altinn/app-frontend-react@18ede8d

    fix: issue with organisation logo not taking the available space (#1443)

    * fix: issue with organisation logo not taking the available space

    * fix: use takeEvery instead of takeLatest for updateRepeatingGroupsEditIndex. This solves a bug where there was a race condition on validating multiple rows in repeating groups
  • Loading branch information
mikaelrss committed Sep 12, 2023
1 parent 32707e4 commit 032c26e
Show file tree
Hide file tree
Showing 18 changed files with 39,865 additions and 1,233 deletions.
21 changes: 21 additions & 0 deletions schemas/json/application/application-metadata.schema.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
},
"messageBoxConfig": {
"$ref": "#/definitions/messageBoxConfig"
},
"logo": {
"$ref": "#/definitions/logo"
}
},
"definitions": {
Expand Down Expand Up @@ -549,6 +552,24 @@
}
}
]
},
"logo": {
"type": "object",
"properties": {
"source": {
"type": "string",
"title": "Source",
"description": "The source of the logo. Can be a \"org\" or \"resource\". If \"org\" the logo will be fetched from altinn-orgs.json. If \"resource\" the logo will be fetched from text resources with the key \"appLogo.url\".",
"enum": ["org", "resource"]
},
"displayAppOwnerNameInHeader": {
"type": "boolean",
"title": "Display app owner name in header",
"description": "A boolean indicating if the app owner name should be displayed in the header next to the logo."
}
},
"required": ["source"],
"additionalProperties": false
}
}
}
Loading

0 comments on commit 032c26e

Please sign in to comment.