mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
fix(app-list): fix recovered services spinner (#1376)
This commit is contained in:
@@ -35,14 +35,17 @@ export class AppListRecComponent {
|
||||
readonly installing$ = this.install$.pipe(
|
||||
switchMap(({ id, version }) =>
|
||||
// Mapping each installation to API request
|
||||
this.marketplaceService.installPackage({
|
||||
id,
|
||||
'version-spec': `>=${version}`,
|
||||
'version-priority': 'min',
|
||||
}),
|
||||
this.marketplaceService
|
||||
.installPackage({
|
||||
id,
|
||||
'version-spec': `>=${version}`,
|
||||
'version-priority': 'min',
|
||||
})
|
||||
.pipe(
|
||||
// Mapping operation to true/false loading indication
|
||||
loading(this.errToast),
|
||||
),
|
||||
),
|
||||
// Mapping operation to true/false loading indication
|
||||
loading(this.errToast),
|
||||
)
|
||||
|
||||
// Deleting package
|
||||
|
||||
Reference in New Issue
Block a user