Browse Source
Merge branch 'main' into feature/reload-available-tags-after-creating-custom-tag-in-holding-detail-dialog
pull/4328/head
Thomas Kaul
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
11 additions and
0 deletions
-
CHANGELOG.md
-
libs/ui/.storybook/main.js
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Reloaded the available tags after creating a custom tag in the holding detail dialog (experimental) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Added missing assets in _Storybook_ setup |
|
|
|
|
|
|
|
## 2.139.1 - 2025-02-15 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -1,9 +1,16 @@ |
|
|
|
/** @type {import('@storybook/angular').StorybookConfig} */ |
|
|
|
const config = { |
|
|
|
addons: ['@storybook/addon-essentials'], |
|
|
|
framework: { |
|
|
|
name: '@storybook/angular', |
|
|
|
options: {} |
|
|
|
}, |
|
|
|
staticDirs: [ |
|
|
|
{ |
|
|
|
from: '../../../apps/client/src/assets', |
|
|
|
to: '/assets' |
|
|
|
} |
|
|
|
], |
|
|
|
stories: ['../**/*.stories.@(js|jsx|ts|tsx|mdx)'] |
|
|
|
}; |
|
|
|
|
|
|
|