Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e39c8ce
update notifications components designs
christian-byrne Oct 26, 2025
7430772
fix stylelint issues
christian-byrne Oct 26, 2025
593edd5
fix test locator
christian-byrne Oct 26, 2025
a24643a
update release notification components with semantic design tokens
christian-byrne Oct 29, 2025
40ba53d
fix notification component tests and remove temporary mock data
christian-byrne Nov 6, 2025
f155a18
implement new designs
christian-byrne Nov 7, 2025
87d434c
fix test
christian-byrne Nov 7, 2025
e7c9cdf
update style
christian-byrne Nov 13, 2025
e563ca5
use correct tokens
christian-byrne Nov 13, 2025
4b3ccd9
remove border radius token
christian-byrne Nov 14, 2025
c370386
[feat] Implement proper design tokens and Storybook stories for relea…
christian-byrne Nov 27, 2025
5c514eb
add i18n
christian-byrne Nov 27, 2025
1faf41b
[fix] Fix notification component tests and improve empty content hand…
christian-byrne Nov 30, 2025
57bf2ae
[security] Fix XSS vulnerability in notification components
christian-byrne Nov 30, 2025
6f3abc7
[fix] Address nitpick comments
christian-byrne Dec 4, 2025
062b1a7
Remove merge marker
DrJKL Dec 4, 2025
b1ab138
fix: remove inappropriate update button from WhatsNewPopup and add sc…
christian-byrne Dec 6, 2025
468335c
refactor: remove inappropriate image stories from toast component
christian-byrne Dec 9, 2025
ee89a3a
[fix] resolve merge conflict markers in main.json
christian-byrne Dec 9, 2025
a7d949a
[fix] remove TypeScript any casts and improve type safety in tests
christian-byrne Dec 9, 2025
892d785
[fix] correct HTML rel attribute, use semantic CSS token, prevent tes…
christian-byrne Dec 9, 2025
0724df8
[fix] use i18n for hardcoded strings, fix Storybook vitest mock, clea…
christian-byrne Dec 9, 2025
b83b4e5
[fix] add recentRelease mock to Storybook for proper component rendering
christian-byrne Dec 9, 2025
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
Prev Previous commit
[fix] add recentRelease mock to Storybook for proper component rendering
  • Loading branch information
christian-byrne committed Dec 9, 2025
commit b83b4e59dd2c1e80c1cc7cc69dcc0224cbb8e574
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ const meta: Meta<StoryArgs> = {
get: () => true,
configurable: true
})
// Override recentRelease getter for Storybook
Object.defineProperty(releaseStore, 'recentRelease', {
get: () => context.args.releaseData,
configurable: true
})

// Mock the store methods to prevent errors
releaseStore.handleSkipRelease = async () => {
Expand Down