Current section

48 Versions

Jump to

Compare versions

6 files changed
+8 additions
-6 deletions
  @@ -1,7 +1,10 @@
1 1 # Changelog
2 2
3 + ## 0.2.7
3 4
4 - # 0.2.6
5 + Fixes a bug introduced in `0.2.6` where single select `action_list_item`s did not get unique ids.
6 +
7 + ## 0.2.6
5 8
6 9 - Fixes a bug where `FormHelpers.field_state` did not handle forms without a changeset.
7 10 - Updated components:
  @@ -43,4 +43,4 @@
43 43 {<<"optional">>,false},
44 44 {<<"repository">>,<<"hexpm">>},
45 45 {<<"requirement">>,<<"~> 1.4">>}]]}.
46 - {<<"version">>,<<"0.2.6">>}.
46 + {<<"version">>,<<"0.2.7">>}.
unknownlib/component.ex
File is too large to be displayed (100 KB limit).
  @@ -517,8 +517,7 @@ defmodule PrimerLive.Helpers.AttributeHelpers do
517 517
518 518 # Get value from checkbox or radio button
519 519
520 - ## Ignore the default value "true" when generating derived_label and input_id
521 - checked_value = if assigns[:checked_value] === "true", do: nil, else: assigns[:checked_value]
520 + checked_value = assigns[:checked_value]
522 521 value = assigns[:value] || rest[:value]
523 522 value_for_derived_label = checked_value || value
  @@ -4,7 +4,7 @@ defmodule PrimerLive.MixProject do
4 4 def project do
5 5 [
6 6 app: :primer_live,
7 - version: "0.2.6",
7 + version: "0.2.7",
8 8 homepage_url: "https://github.com/ArthurClemens/primer_live",
9 9 description: description(),
10 10 package: package(),
Loading more files…