Skip to content

Commit

Permalink
Fix: showing in module config langages not visible on front-office
Browse files Browse the repository at this point in the history
  • Loading branch information
Franck Allimant committed Apr 17, 2023
1 parent 0aac0d7 commit 226db53
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: "Auto Release"
on:
push:
branches: [ master, main ]
jobs:
release:
uses: thelia-modules/ReusableWorkflow/.github/workflows/auto_release.yml@main
2 changes: 1 addition & 1 deletion Config/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<language>en_US</language>
<language>fr_FR</language>
</languages>
<version>1.3.3</version>
<version>1.3.4</version>
<author>
<name>Gilles Bourgeat</name>
<email>gilles.bourgeat@gmail.com</email>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<div role="tabpanel">
<ul class="nav nav-tabs" role="tablist">
{loop type="lang" name="lang"}
{loop type="lang" name="lang" backend_context=1}
<li role="presentation" {if $ID == $edit_language_id}class="active"{/if}>
<a href="#attribute-type-{$LOCALE}" aria-controls="settings" role="tab" data-toggle="tab">
<img src="{image file="assets/img/flags/$CODE.png"}" alt="{$TITLE}" />
Expand All @@ -29,7 +29,7 @@

<div class="tab-content">
<br/>
{loop type="lang" name="lang"}
{loop type="lang" name="lang" backend_context=1}
{$lang_id = $ID}
<div role="tabpanel" class="tab-pane {if $ID == $edit_language_id}active{/if}" id="attribute-type-{$LOCALE}">
<table class="table table-striped">
Expand Down Expand Up @@ -213,4 +213,4 @@
.attribute_type_av_image_preview:hover{
box-shadow: 0px 0px 10px 0px #f19834;
}
</style>
</style>

0 comments on commit 226db53

Please sign in to comment.