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; num: number;
max: number; max: number;
reseturl: string; reseturl: string;
};; };
hasOfflineRatings = false; hasOfflineRatings = false;

View File

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

View File

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

View File

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