Skip to content

Commit

Permalink
Merge pull request #927 from Codeinwp/bugfix/924
Browse files Browse the repository at this point in the history
Fix update minor grid line field
  • Loading branch information
vytisbulkevicius authored Aug 29, 2022
2 parents 211cbdc + 26f8cc7 commit 9bdac9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/Visualizer/Render/Sidebar/Graph.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ protected function _renderHorizontalAxisSettings() {
esc_html__( 'Specify 0 to disable the minor gridlines.', 'visualizer' ),
0,
'number',
array( 'min' => 0, 'max' => 1, 'step' => 1 )
array( 'min' => 0, 'step' => 1 )
);

self::_renderColorPickerItem(
Expand Down Expand Up @@ -358,7 +358,7 @@ protected function _renderVerticalAxisSettings() {
esc_html__( 'Specify 0 to disable the minor gridlines.', 'visualizer' ),
0,
'number',
array( 'min' => 0, 'max' => 1, 'step' => 1 )
array( 'min' => 0, 'step' => 1 )
);

self::_renderColorPickerItem(
Expand Down

0 comments on commit 9bdac9f

Please sign in to comment.