-
Notifications
You must be signed in to change notification settings - Fork 15
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
feat: Removing Push Notifications in Settings #2475
Conversation
@@ -31,7 +31,7 @@ <h2>Delegatee Notification</h2> | |||
<ion-col> | |||
<div><strong>{{ feature.value.textLabel }}</strong></div> | |||
</ion-col> | |||
<ion-col size="2" *ngIf="$first && (orgUserSettings$|async)?.notification_settings?.push.enabled"> | |||
<ion-col size="2" *ngIf="$first && !(orgUserSettings$|async)?.notification_settings?.push.enabled"> |
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.
why dont we just remove the column?
@@ -54,7 +54,7 @@ <h2>Delegatee Notification</h2> | |||
<ion-col> | |||
<div class="notifications--event-label">{{ event.textLabel }}</div> | |||
</ion-col> | |||
<ion-col size="2" *ngIf="(orgUserSettings$|async)?.notification_settings?.push.enabled"> | |||
<ion-col size="2" *ngIf="!(orgUserSettings$|async)?.notification_settings?.push.enabled"> |
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.
why dont we just remove the column?
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.
Important comment
|
Description
🤖 Generated by Copilot at 1701f45
Fixed a bug in the notifications page that displayed checkboxes incorrectly. Updated the template logic in
notifications.page.html
to respect thepushNotificationsEnabled
flag.🤖 Generated by Copilot at 1701f45
Walkthrough
🤖 Generated by Copilot at 1701f45
Clickup
https://app.clickup.com/t/85ztx3ku4
Code Coverage
Please add code coverage here
UI Preview