-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common popup buttons #1794
Common popup buttons #1794
Conversation
Deployed to https://pr-1794.aam-digital.net/ |
You have successfully added a new SonarCloud configuration ``. As part of the setup process, we have scanned this repository and found no existing alerts. In the future, you will see all code scanning alerts on the repository Security tab. |
39f8593
to
da0d4ac
Compare
3ec50fd
to
d897f8b
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
|
||
constructor( | ||
private entityFormService: EntityFormService, | ||
private dialog: MatDialogRef<any>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this legit to inject here, as the component is only indirectly created through MatDialog? ... Seems to work though, I guess.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I was thinking the same but I guess the injection is also valid all children of the component. I believe this is how the component scoped injection works.
Based on #1752, so review and merge this first.
Cleanup and generalisation of the
Save
,Cancel
,Go to details
andDelete
buttons in the various popups (NoteDetails
,TodoDetails
,RowDetails
).Visible/Frontend Changes
Architectural/Backend Changes
--