Skip to content

Commit 2689a54

Browse files
committed
lint fix
1 parent 098d58e commit 2689a54

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

components/selzy/actions/create-campaign/create-campaign.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,12 @@ export default {
103103
params: clearEmpty({
104104
message_id: this.messageId,
105105
start_time: this.startTime,
106-
track_read: this.trackRead ? 1 : 0,
107-
track_links: this.trackLinks ? 1 : 0,
106+
track_read: this.trackRead
107+
? 1
108+
: 0,
109+
track_links: this.trackLinks
110+
? 1
111+
: 0,
108112
contacts_url: this.contactsUrl,
109113
track_ga: this.trackGa && +this.trackGa,
110114
ga_medium: this.gaMedium,

0 commit comments

Comments
 (0)