Skip to content

Commit

Permalink
Merge branch 'enhancement/8181-site-health-created-audiences' of gith…
Browse files Browse the repository at this point in the history
…ub.com:google/site-kit-wp into enhancement/8181-site-health-created-audiences.
  • Loading branch information
ankitrox committed May 27, 2024
2 parents 9381a89 + 37f88e2 commit 343ce5c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions includes/Modules/Analytics_4.php
Original file line number Diff line number Diff line change
Expand Up @@ -525,15 +525,15 @@ public function get_debug_fields() {
$debug_fields['analytics_4_site_kit_audiences'] = array(
'label' => __( 'Analytics site created audiences', 'google-site-kit' ),
'value' => empty( $site_kit_audiences )
? __( 'None', 'google-site-kit' )
: join(
/* translators: used between list items, there is a space after the comma */
__( ', ', 'google-site-kit' ),
$site_kit_audiences
),
? __( 'None', 'google-site-kit' )
: join(
/* translators: used between list items, there is a space after the comma */
__( ', ', 'google-site-kit' ),
$site_kit_audiences
),
'debug' => empty( $site_kit_audiences )
? 'none'
: join( ', ', $site_kit_audiences ),
? 'none'
: join( ', ', $site_kit_audiences ),
);
}

Expand Down

0 comments on commit 343ce5c

Please sign in to comment.