MOBILE-4081 chore: Fix duplicated semicolon
parent
128cd849b8
commit
44cbee9683
|
@ -103,7 +103,7 @@ export class AddonModDataIndexComponent extends CoreCourseModuleMainActivityComp
|
|||
num: number;
|
||||
max: number;
|
||||
reseturl: string;
|
||||
};;
|
||||
};
|
||||
|
||||
hasOfflineRatings = false;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -175,7 +175,7 @@ export class CoreDom {
|
|||
slot.removeEventListener('slotchange', slotListener);
|
||||
};
|
||||
|
||||
slot.addEventListener('slotchange', slotListener);;
|
||||
slot.addEventListener('slotchange', slotListener);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue