Skip to content

Commit

Permalink
FRW-8906 Fixed category translations form so that it displays correct…
Browse files Browse the repository at this point in the history
… validation messages for the Name field. (#11104)

FRW-8906 Fixed category translations form so that it displays correct validation messages for the Name field.
  • Loading branch information
aleksandr-velikanov authored Oct 7, 2024
1 parent 953d1fd commit cd8af93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions assets/Inspinia/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3934,6 +3934,7 @@ code {
.ibox.collapsed .ibox-content {
display: none;
}

.ibox.collapsed .fa.fa-chevron-up:before {
content: '\f078';
}
Expand Down
2 changes: 1 addition & 1 deletion assets/Inspinia/inspinia.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $(document).ready(function () {
var content = ibox.children('.ibox-content');
content.slideToggle(200);
button.toggleClass('fa-minus').toggleClass('fa-plus');
ibox.toggleClass('').toggleClass('border-bottom');
ibox.toggleClass('border-bottom');
setTimeout(function () {
ibox.resize();
ibox.find('[id^=map-]').resize();
Expand Down
4 changes: 4 additions & 0 deletions assets/Zed/js/modules/libs/safe-checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ function addSafeSubmitCheck() {

if (isValid) {
setTimeout(disableTrigger);
} else {
$('.ibox.collapsed').each((index, item) => {
$(item).find('.collapse-link').trigger('click');
});
}

return true;
Expand Down
3 changes: 2 additions & 1 deletion src/Spryker/Zed/Gui/Presentation/Partials/widget.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div class="row {{ row_class | default('') }}"{% if row_id is defined and row_id is not empty %} id="{{ row_id }}"{% endif %}>
<div class="row {{ row_class | default('') }}"
{% if row_id is defined and row_id is not empty %}id="{{ row_id }}"{% endif %}">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
Expand Down

0 comments on commit cd8af93

Please sign in to comment.