Skip to content

Commit

Permalink
fix(admin@0.23): update composer with conflict for charcoal-admin@<0.…
Browse files Browse the repository at this point in the history
…23.0 and fix the form group widgets id prefixes
  • Loading branch information
JoelAlphonso committed Mar 2, 2020
1 parent 9a70f80 commit 804cc50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
"mustache/mustache": "^2.11",
"locomotivemtl/charcoal-admin": "~0.6"
},
"conflict": {
"locomotivemtl/charcoal-admin": "<0.23.0"
},
"autoload": {
"psr-4": {
"Charcoal\\": "src/Charcoal"
Expand Down
6 changes: 3 additions & 3 deletions views/charcoal/admin/template/form/nav-pills.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
{{# groups }}
<li class="nav-item">
<a class="nav-link{{^ showTitle }} hide-title{{/ showTitle }}{{^ isHidden }} active{{/ isHidden }} js-group-tabs"
id="form_group_{{ widgetId }}_tab_{{ ident }}"
href="#form_group_{{ widgetId }}"
id="{{ widgetId }}_tab_{{ ident }}"
href="#{{ widgetId }}"
role="tab"
data-toggle="tab"
data-tab-ident="{{ ident }}"
data-show-title="{{# showTitle }}true{{/ showTitle }}{{^ showTitle }}false{{/ showTitle }}"
aria-controls="form_group_{{ widgetId }}"
aria-controls="{{ widgetId }}"
aria-selected="{{# isHidden }}false{{/ isHidden }}{{^ isHidden }}true{{/ isHidden }}">
{{# showIcon }}
{{# icon }}
Expand Down

0 comments on commit 804cc50

Please sign in to comment.