Skip to content

Commit

Permalink
feat: display list remote name on newsletter wizard (#3478)
Browse files Browse the repository at this point in the history
* feat: display list remote name on newsletter wizard

* feat: restore line deleted by accident
  • Loading branch information
leogermani authored Oct 23, 2024
1 parent 123408e commit cd0b859
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/wizards/engagement/views/newsletters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,10 @@ export const SubscriptionLists = ( { lockedLists, onUpdate, initialProvider } )
isSmall
simple
hasWhiteHeader
title={ list.name }
description={ list?.type_label ? list.type_label : null }
title={ list.remote_name }
description={
list?.type_label ? list.type_label : null
}
disabled={ inFlight }
toggleOnChange={ handleChange( index, 'active' ) }
toggleChecked={ list.active }
Expand Down

0 comments on commit cd0b859

Please sign in to comment.