MOBILE-3814 lint: Fix missing spaces after assignment

main
Pau Ferrer Ocaña 2022-03-16 12:37:19 +01:00
parent 2887290c30
commit fed1e399bc
2 changed files with 3 additions and 3 deletions

View File

@ -271,7 +271,7 @@ export class AddonMessagesGroupConversationsPage implements OnInit, OnDestroy {
async ngOnInit(): Promise<void> {
this.route.queryParams.subscribe(async (params) => {
// When a child page loads this callback is triggered too.
const conversationId =CoreNavigator.getRouteNumberParam('conversationId', { params });
const conversationId = CoreNavigator.getRouteNumberParam('conversationId', { params });
const userId = CoreNavigator.getRouteNumberParam('userId', { params });
if (conversationId || userId) {
// Update the selected ones.

View File

@ -67,7 +67,7 @@ export class CoreNavigationBarComponent implements OnChanges {
this.progress = ((this.currentIndex + 1) / this.items.length) * 100;
this.progressText = `${this.currentIndex + 1} / ${this.items.length}`;
this.nextIndex =this.currentIndex + 1;
this.nextIndex = this.currentIndex + 1;
while (this.items[this.nextIndex] && !this.items[this.nextIndex].enabled) {
this.nextIndex++;
}
@ -75,7 +75,7 @@ export class CoreNavigationBarComponent implements OnChanges {
? Translate.instant(this.nextTranslate, { $a: this.items[this.nextIndex].title || '' })
: '';
this.previousIndex =this.currentIndex - 1;
this.previousIndex = this.currentIndex - 1;
while (this.items[this.previousIndex] && !this.items[this.previousIndex].enabled) {
this.previousIndex--;
}