File tree 2 files changed +3
-4
lines changed
dashboard/src/components/activity
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,6 @@ export class TopicsController {
239
239
@Param ( 'topicKey' ) topicKey : string ,
240
240
@Body ( ) body : CreateTopicSubscriptionsRequestDto
241
241
) : Promise < CreateTopicSubscriptionsResponseDto > {
242
- // Execute the use case to create topic subscriptions
243
242
const result = await this . createTopicSubscriptionsUsecase . execute (
244
243
CreateTopicSubscriptionsCommand . create ( {
245
244
environmentId : user . environmentId ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ export function ActivityFilters({
122
122
title = "Transaction ID"
123
123
value = { filters . transactionId }
124
124
onChange = { ( value ) => onFiltersChange ( { ...filters , transactionId : value } ) }
125
- placeholder = "Search by Transaction ID"
125
+ placeholder = "Search by full Transaction ID"
126
126
/>
127
127
) }
128
128
@@ -133,7 +133,7 @@ export function ActivityFilters({
133
133
title = "Subscriber ID"
134
134
value = { filters . subscriberId }
135
135
onChange = { ( value ) => onFiltersChange ( { ...filters , subscriberId : value } ) }
136
- placeholder = "Search by Subscriber ID"
136
+ placeholder = "Search by full Subscriber ID"
137
137
/>
138
138
) }
139
139
@@ -144,7 +144,7 @@ export function ActivityFilters({
144
144
title = "Topic Key"
145
145
value = { filters . topicKey }
146
146
onChange = { ( value ) => onFiltersChange ( { ...filters , topicKey : value } ) }
147
- placeholder = "Search by Topic Key"
147
+ placeholder = "Search by full Topic Key"
148
148
/>
149
149
) }
150
150
You can’t perform that action at this time.
0 commit comments