Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdkei authored Apr 1, 2024
1 parent 693b673 commit 9b4959a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/display-items-control/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const DisplayItemsControl = (props) => {
)}
<CheckboxControl
label={__('Button', 'vk-blocks-pro')}
checked={display_btn}
checked={display_btn} //eslint-disable-line camelcase
onChange={(checked) => setAttributes({ display_btn: checked })}
/>
<h4>{__('New mark option', 'vk-blocks-pro')}</h4>
Expand All @@ -100,7 +100,7 @@ export const DisplayItemsControl = (props) => {
type={'number'}
/>
<TextControl
label={__('New post mark', 'vk-blocks-pro')}
label={__('New post mark', 'vk-blocks-pro')} //eslint-disable-line camelcase
value={new_text}
onChange={(value) => setAttributes({ new_text: value })}
/>
Expand Down

0 comments on commit 9b4959a

Please sign in to comment.