Skip to content

Commit

Permalink
Merge pull request #27379 from storybookjs/shilman/tweak-composition-…
Browse files Browse the repository at this point in the history
…tags

Tags: Refine composition behavior
(cherry picked from commit 8596408)
  • Loading branch information
shilman authored and storybook-bot committed May 27, 2024
1 parent d972793 commit b84b6d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/manager-api/src/lib/stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const transformStoryIndexV4toV5 = (
(acc, entry) => {
acc[entry.id] = {
...entry,
tags: entry.tags ? [...entry.tags, 'dev'] : ['dev'],
tags: entry.tags ? ['dev', 'test', ...entry.tags] : ['dev'],
};

return acc;
Expand Down

0 comments on commit b84b6d7

Please sign in to comment.