-
Notifications
You must be signed in to change notification settings - Fork 1.2k
App problems ripple #6363
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
App problems ripple #6363
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "saleor-dashboard": patch | ||
| --- | ||
|
|
||
| Added a hint (Ripple) on the installed extensions page to notify users about the new app problems feature, which shows issues with apps directly in the extensions list. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import { type Ripple } from "@dashboard/ripples/types"; | ||
|
|
||
| export const rippleAppProblems: Ripple = { | ||
| type: "feature", | ||
| ID: "app-problems", | ||
| TTL_seconds: 60 * 60 * 24 * 2, // 2 days | ||
| content: { | ||
| oneLiner: "App problems visibility", | ||
| contextual: "You can now see issues with apps directly in the extensions list.", | ||
| global: | ||
| "App problems are now visible in the installed extensions page. When an app has issues, you will see a badge indicating the number of problems and their severity.", | ||
| }, | ||
| dateAdded: new Date(2026, 1), | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. looks like date is not correct
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I meant that today is Feb 24th 😄
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if we take just the month though from this date then it's fine 👌🏻 |
||
| }; | ||

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.
The dateAdded field should include a day parameter for consistency and clarity. Most other ripples in the codebase specify the full date with year, month, and day (e.g.,
new Date(2026, 0, 29)ornew Date("2026-01-27")). Whilenew Date(2026, 1)is valid and defaults to the first day of the month, explicitly specifying the day makes the intended date clearer and follows the predominant pattern in the codebase.