Skip to content
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

Turn on app alerts in feature flags #5440

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/healthy-poems-draw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

You can now see and manage new app alerts feature in feature flags
4 changes: 2 additions & 2 deletions .featureFlags/app_alerts.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: app_alerts
displayName: App alerts
enabled: false
enabled: true
payload: "default"
visible: false
visible: true
---

![new filters](./images/app-alerts.jpg)
Expand Down
16 changes: 8 additions & 8 deletions .featureFlags/generated.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// @ts-nocheck

import M09811 from "./images/app-alerts.jpg"
import T88459 from "./images/discounts-list.png"
import L79851 from "./images/improved_refunds.png"
import C72628 from "./images/app-alerts.jpg"
import F73464 from "./images/discounts-list.png"
import N31808 from "./images/improved_refunds.png"

const app_alerts = () => (<><p><img src={M09811} alt="new filters"/>
const app_alerts = () => (<><p><img src={C72628} alt="new filters"/>
Experience new notifications displaying alerts for apps in the Dashboard.
Get meaningful information when Saleor detects issues with an app.</p>
</>)
const discounts_rules = () => (<><p><img src={T88459} alt="Discount rules"/></p>
const discounts_rules = () => (<><p><img src={F73464} alt="Discount rules"/></p>
<p>Apply the new discounts rules to narrow your promotions audience.
Set up conditions and channels that must be fulfilled to apply defined reward.</p>
</>)
const improved_refunds = () => (<><p><img src={L79851} alt="Improved refunds"/></p>
const improved_refunds = () => (<><p><img src={N31808} alt="Improved refunds"/></p>
<h3 id="enable-the-enhanced-refund-feature-to-streamline-your-refund-process">Enable the enhanced refund feature to streamline your refund process:</h3>
<ul>
<li><p>• Choose between automatic calculations based on selected items or enter refund amounts directly for overcharges and custom adjustments.</p>
Expand Down Expand Up @@ -41,9 +41,9 @@ export const AVAILABLE_FLAGS = [{
name: "app_alerts",
displayName: "App alerts",
component: app_alerts,
visible: false,
visible: true,
content: {
enabled: false,
enabled: true,
payload: "default",
}
},{
Expand Down
Loading