@@ -154,20 +154,23 @@ export const Pills = ({ campaign }: { campaign: CampaignWithOutput }) => {
154154 < Pipe style = { { marginRight : globalTheme . space . md } } />
155155 { meta . allowed_devices . includes ( 'desktop' ) && (
156156 < Pill
157+ id = "pill-desktop-header"
157158 icon = { < DesktopIcon /> }
158159 title = { t ( '__CAMPAIGN_PAGE_INFO_HEADER_DESKTOP' ) }
159160 color = { globalTheme . palette . azure [ 600 ] }
160161 />
161162 ) }
162163 { meta . allowed_devices . includes ( 'smartphone' ) && (
163164 < Pill
165+ id = "pill-smartphone-header"
164166 icon = { < SmartphoneIcon /> }
165167 title = { t ( '__CAMPAIGN_PAGE_INFO_HEADER_PLATFORM_SMARTPHONE' ) }
166168 color = { globalTheme . palette . azure [ 600 ] }
167169 />
168170 ) }
169171 { meta . allowed_devices . includes ( 'tablet' ) && (
170172 < Pill
173+ id = "pill-tablet-header"
171174 icon = { < TabletIcon /> }
172175 title = { t ( '__CAMPAIGN_PAGE_INFO_HEADER_PLATFORM_TABLET' ) }
173176 color = { globalTheme . palette . azure [ 600 ] }
@@ -179,6 +182,7 @@ export const Pills = ({ campaign }: { campaign: CampaignWithOutput }) => {
179182 < ButtonWrapper >
180183 { outputs ?. includes ( 'bugs' ) && (
181184 < Button
185+ id = "button-bugs-list-header"
182186 isPrimary
183187 isPill
184188 themeColor = { globalTheme . palette . water [ 600 ] }
@@ -195,6 +199,7 @@ export const Pills = ({ campaign }: { campaign: CampaignWithOutput }) => {
195199 ) }
196200 { outputs ?. includes ( 'media' ) && (
197201 < Button
202+ id = "button-media-list-header"
198203 isPrimary
199204 isPill
200205 themeColor = { globalTheme . palette . water [ 600 ] }
0 commit comments