Skip to content

Commit

Permalink
chore: fix web topic
Browse files Browse the repository at this point in the history
  • Loading branch information
Grodien committed Oct 28, 2024
1 parent 9df410f commit dae37d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/app/sfera-observer/sfera-observer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class SferaObserverComponent implements OnDestroy {

async observe() {
const customTopicPrefix = this.environmentControl.value ? this.customPrefixControl.value : '';
const trainOperation = this.dateControl.value + '_' + this.trainControl.value;
const trainOperation = this.trainControl.value + '_' + this.dateControl.value;
this.g2bTopic = customTopicPrefix + '90940/2/G2B/' + this.companyControl.value + '/' + trainOperation + '/' + this.clientIdControl.value;
this.b2gTopic = customTopicPrefix + '90940/2/B2G/' + this.companyControl.value + '/' + trainOperation + '/' + this.clientIdControl.value;
this.eventTopic = customTopicPrefix + '90940/2/event/' + this.companyControl.value + '/' + trainOperation;
Expand Down

0 comments on commit dae37d8

Please sign in to comment.