Skip to content

Commit

Permalink
issue with button normal / hover keys for color control
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-c-woodard committed Nov 25, 2024
1 parent f836fb9 commit 942444a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/blocks/singlebtn/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,7 @@ export default function KadenceButtonEdit(props) {
)}
{'normal' === textBackgroundHoverType && (
<PopColorControl
key={'btncolorhover'}
label={__('Color Hover', 'kadence-blocks')}
value={colorHover ? colorHover : ''}
default={''}
Expand Down Expand Up @@ -895,6 +896,7 @@ export default function KadenceButtonEdit(props) {
)}
{'normal' === backgroundHoverType && (
<PopColorControl
key={'btnbghover'}
label={__('Background Color', 'kadence-blocks')}
value={backgroundHover ? backgroundHover : ''}
default={''}
Expand Down Expand Up @@ -1063,6 +1065,7 @@ export default function KadenceButtonEdit(props) {
)}
{'normal' === textBackgroundType && (
<PopColorControl
key={'btncolor'}
label={__('Color', 'kadence-blocks')}
value={color ? color : ''}
default={''}
Expand All @@ -1086,6 +1089,7 @@ export default function KadenceButtonEdit(props) {
)}
{'normal' === backgroundType && (
<PopColorControl
key={'btnbg'}
label={__('Background Color', 'kadence-blocks')}
value={background ? background : ''}
default={''}
Expand Down

0 comments on commit 942444a

Please sign in to comment.