Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/KAD-4209_progress_bar_init_in_ql
Browse files Browse the repository at this point in the history
  • Loading branch information
oakesjosh authored Mar 3, 2025
2 parents 14ebefe + 40f935b commit 968556c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ Please report security bugs found in the Kadence Blocks plugin's source code thr
= 3.4.12 =
Release Date: TBD March 2025
* Fix: Progress bars not initializing insdie query loops.
* Fix: Setting numeric padding & margin on Adv Navigation sub menu links.

= 3.4.11 =
Release Date: 25th February 2025
Expand Down
12 changes: 6 additions & 6 deletions src/blocks/navigation/edit-inner.js
Original file line number Diff line number Diff line change
Expand Up @@ -1980,9 +1980,9 @@ export function EditInner(props) {
/>
<ResponsiveMeasureRangeControl
label={__('Link Padding', 'kadence-blocks')}
value={paddingDropdownLink}
tabletValue={tabletPaddingDropdownLink}
mobileValue={mobilePaddingDropdownLink}
value={arrayStringToInt(paddingDropdownLink)}
tabletValue={arrayStringToInt(tabletPaddingDropdownLink)}
mobileValue={arrayStringToInt(mobilePaddingDropdownLink)}
onChange={(value) => {
setMetaAttribute(value.map(String), 'paddingDropdownLink');
}}
Expand All @@ -2009,9 +2009,9 @@ export function EditInner(props) {
/>
<ResponsiveMeasureRangeControl
label={__('Link Margin', 'kadence-blocks')}
value={marginDropdownLink}
tabletValue={tabletMarginDropdownLink}
mobileValue={mobileMarginDropdownLink}
value={arrayStringToInt(marginDropdownLink)}
tabletValue={arrayStringToInt(tabletMarginDropdownLink)}
mobileValue={arrayStringToInt(mobileMarginDropdownLink)}
onChange={(value) => {
setMetaAttribute(value.map(String), 'marginDropdownLink');
}}
Expand Down

0 comments on commit 968556c

Please sign in to comment.