Skip to content

Commit

Permalink
Fix - Trailing comma's issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deepench committed Jul 11, 2023
1 parent 16ec46e commit 648e3c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/admin/builder/class-evf-builder-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ public function add_custom_css_js_settings( $form_data ) {
'settings',
'evf-custom-css',
$this->form_data,
esc_html__( 'Custom CSS', 'everest-forms' ),
esc_html__( 'Custom CSS', 'everest-forms' )
);
echo '</div>';
echo '<div class="everest-forms-border-container"><h4 class="everest-forms-border-container-title">' . esc_html__( 'Custom JS', 'everest-forms' ) . '</h4>';
Expand All @@ -714,7 +714,7 @@ public function add_custom_css_js_settings( $form_data ) {
'settings',
'evf-custom-js',
$this->form_data,
esc_html__( 'Custom JS', 'everest-forms' ),
esc_html__( 'Custom JS', 'everest-forms' )
);
echo '</div>';

Expand Down

0 comments on commit 648e3c1

Please sign in to comment.