Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Rami Yushuvaev <[email protected]>
  • Loading branch information
nuritsha and rami-elementor authored Dec 25, 2024
1 parent 2758f38 commit c635cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/content/widgets/zig-zag.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@ private function add_style_zigzags_section() {
'options' => [
'start' => [
'title' => esc_html__( 'Start', 'hello-plus' ),
'icon' => 'eicon-order-start',
'icon' => 'eicon-order-' . ( is_rtl() ? 'end' : 'start' ),
],
'end' => [
'title' => esc_html__( 'End', 'hello-plus' ),
'icon' => 'eicon-order-end',
'icon' => 'eicon-order-' . ( is_rtl() ? 'start' : 'end' ),
],
],
'default' => 'start',
Expand Down

0 comments on commit c635cc7

Please sign in to comment.