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 9b4959a commit 9240ddd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/display-items-control/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export const DisplayItemsControl = (props) => {
type={'number'}
/>
<TextControl
label={__('New post mark', 'vk-blocks-pro')} //eslint-disable-line camelcase
value={new_text}
label={__('New post mark', 'vk-blocks-pro')}
value={new_text} //eslint-disable-line camelcase
onChange={(value) => setAttributes({ new_text: value })}
/>
<h4 className={'postList_itemCard_button-option'}>
Expand All @@ -115,7 +115,7 @@ export const DisplayItemsControl = (props) => {
</p>
<TextControl
label={__('Button text', 'vk-blocks-pro')}
value={btn_text}
value={btn_text} //eslint-disable-line camelcase
onChange={(value) => setAttributes({ btn_text: value })}
/>
<BaseControl
Expand Down

0 comments on commit 9240ddd

Please sign in to comment.