Skip to content

Commit

Permalink
Merge branch '4.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrabowskiM committed Sep 23, 2024
2 parents 0935c16 + db4475a commit d05d299
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@
{{- form_label(form) -}}
</div>
<div class="ibexa-field-edit__distraction-free-mode-btns">
<button type="button" class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-field-edit__distraction-free-mode-control-btn ibexa-field-edit__distraction-free-mode-control-btn--enable">
<button {{ (fieldtype_is_not_translatable or disabled) ? 'disabled' }} type="button" class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-field-edit__distraction-free-mode-control-btn ibexa-field-edit__distraction-free-mode-control-btn--enable">
<svg class="ibexa-icon ibexa-icon--tiny-small">
<use xlink:href="{{ ibexa_icon_path('focus') }}"></use>
</svg>
Expand All @@ -543,7 +543,7 @@
{{ 'distraction_free_mode.enable.label'|trans|desc('Distraction free mode') }}
</span>
</button>
<button type="button" class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-field-edit__distraction-free-mode-control-btn ibexa-field-edit__distraction-free-mode-control-btn--disable">
<button {{ (fieldtype_is_not_translatable or disabled) ? 'disabled' }} type="button" class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-field-edit__distraction-free-mode-control-btn ibexa-field-edit__distraction-free-mode-control-btn--disable">
<svg class="ibexa-icon ibexa-icon--tiny-small">
<use xlink:href="{{ ibexa_icon_path('un-focus') }}"></use>
</svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ const UniversalDiscoveryModule = (props) => {

useEffect(() => {
if (currentView === 'grid') {
setGridActiveLocationId(markedLocationId);
setGridActiveLocationId(markedLocationId ?? defaultMarkedLocationId);
}
}, [currentView]);

Expand Down

0 comments on commit d05d299

Please sign in to comment.