Skip to content

Commit 7bbaee1

Browse files
authored
Merge pull request #665 from woylie/fix/icon-story-names
fix/icon story names
2 parents b881f19 + 8ef577d commit 7bbaee1

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
## Unreleased
66

7+
## [0.14.2] - 2026-04-07
8+
9+
### Fixed
10+
11+
- Icon story: Render all configured icons instead of only the first one.
12+
713
## [0.14.1] - 2026-04-07
814

915
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The package can be installed by adding `doggo` to your list of dependencies in
1616
```elixir
1717
def deps do
1818
[
19-
{:doggo, "~> 0.14.1"}
19+
{:doggo, "~> 0.14.2"}
2020
]
2121
end
2222
```

lib/doggo/storybook/icon.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ defmodule Doggo.Storybook.Icon do
8383
%Variation{
8484
id: :"name_#{name}",
8585
attributes: %{
86-
name: first_name
86+
name: name
8787
}
8888
}
8989
end

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Doggo.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/woylie/doggo"
5-
@version "0.14.1"
5+
@version "0.14.2"
66

77
def project do
88
[

0 commit comments

Comments
 (0)