File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1846,8 +1846,8 @@ extension WooAnalyticsEvent {
18461846 WooAnalyticsEvent ( statName: . productListBulkUpdateFailure, properties: [ Keys . property. rawValue: field. rawValue] )
18471847 }
18481848
1849- static func bulkUpdateSelectAll ( ) -> WooAnalyticsEvent {
1850- WooAnalyticsEvent ( statName: . productListBulkUpdateSelectAll , properties: [ : ] )
1849+ static func bulkUpdateSelectAllTapped ( ) -> WooAnalyticsEvent {
1850+ WooAnalyticsEvent ( statName: . productListBulkUpdateSelectAllTapped , properties: [ : ] )
18511851 }
18521852 }
18531853}
Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ public enum WooAnalyticsStat: String {
480480 case productListBulkUpdateConfirmed = " product_list_bulk_update_confirmed "
481481 case productListBulkUpdateSuccess = " product_list_bulk_update_success "
482482 case productListBulkUpdateFailure = " product_list_bulk_update_failure "
483- case productListBulkUpdateSelectAll = " product_list_bulk_update_select_all "
483+ case productListBulkUpdateSelectAllTapped = " product_list_bulk_update_select_all_tapped "
484484
485485 // MARK: Add Product Events
486486 //
Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ private extension ProductsViewController {
346346 }
347347
348348 @objc func selectAllProducts( ) {
349- ServiceLocator . analytics. track ( event: . ProductsList. bulkUpdateSelectAll ( ) )
349+ ServiceLocator . analytics. track ( event: . ProductsList. bulkUpdateSelectAllTapped ( ) )
350350
351351 viewModel. selectProducts ( resultsController. fetchedObjects)
352352 updatedSelectedItems ( )
You can’t perform that action at this time.
0 commit comments