MOBILE-4081 chore: Fix duplicated semicolon

main
Pau Ferrer Ocaña 2022-08-31 17:06:38 +02:00
parent 128cd849b8
commit 44cbee9683
4 changed files with 4 additions and 4 deletions

View File

@ -103,7 +103,7 @@ export class AddonModDataIndexComponent extends CoreCourseModuleMainActivityComp
num: number;
max: number;
reseturl: string;
};;
};
hasOfflineRatings = false;

View File

@ -214,7 +214,7 @@ export class AddonModSurveyIndexComponent extends CoreCourseModuleMainActivityCo
// Update the view.
prefetched ?
this.showLoadingAndFetch(false, false) :
this.showLoadingAndRefresh(false);;
this.showLoadingAndRefresh(false);
} catch {
// Prefetch failed, refresh the data.
this.showLoadingAndRefresh(false);

View File

@ -60,7 +60,7 @@ export class CoreCourseModuleSummaryComponent implements OnInit, OnDestroy {
removeFilesLoading = false;
prefetchLoading = false;
canPrefetch = false;;
canPrefetch = false;
prefetchDisabled = false;
size?: number; // Size in bytes
downloadTimeReadable = ''; // Last download time in a readable format.

View File

@ -175,7 +175,7 @@ export class CoreDom {
slot.removeEventListener('slotchange', slotListener);
};
slot.addEventListener('slotchange', slotListener);;
slot.addEventListener('slotchange', slotListener);
}
/**