Skip to content
Snippets Groups Projects
Commit 0b8274e6 authored by Lennard Strohmeyer's avatar Lennard Strohmeyer :penguin:
Browse files

#2 - do not show confirmation dialog for objects either if no previous consent exists

parent 1c363c3d
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ export class PrivacySettingComponent implements OnInit {
}
})
})
if (isConfirmationRequired) {
if (isConfirmationRequired && this.previousUserConsent != null) {
const onConfirm = () => this.change.emit(this.consentDeclaration)
const onCancel = () => (event.source.checked = false)
this.openObjectWarningDialog(onConfirm, onCancel,verbId)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment