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
parent
commit
d7f40a212f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 7
      libs/ui/.storybook/main.js

4
CHANGELOG.md

@ -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) - 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 ## 2.139.1 - 2025-02-15
### Added ### Added

7
libs/ui/.storybook/main.js

@ -1,9 +1,16 @@
/** @type {import('@storybook/angular').StorybookConfig} */
const config = { const config = {
addons: ['@storybook/addon-essentials'], addons: ['@storybook/addon-essentials'],
framework: { framework: {
name: '@storybook/angular', name: '@storybook/angular',
options: {} options: {}
}, },
staticDirs: [
{
from: '../../../apps/client/src/assets',
to: '/assets'
}
],
stories: ['../**/*.stories.@(js|jsx|ts|tsx|mdx)'] stories: ['../**/*.stories.@(js|jsx|ts|tsx|mdx)']
}; };

Loading…
Cancel
Save