mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 06:09:39 +00:00
ESM Conversion, fix downloads
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Component, ElementRef, ViewChild } from '@angular/core'
|
||||
|
||||
import { keys, pickBy } from 'lodash'
|
||||
import _ from 'lodash'
|
||||
|
||||
import { DownloadService } from '../../../core/services/download.service'
|
||||
import { SearchService } from '../../../core/services/search.service'
|
||||
@@ -27,7 +27,7 @@ export class StatusBarComponent {
|
||||
}
|
||||
|
||||
get selectedGroupIds() {
|
||||
return keys(pickBy(this.selectionService.selections)).map(k => Number(k))
|
||||
return _.keys(_.pickBy(this.selectionService.selections)).map(k => Number(k))
|
||||
}
|
||||
|
||||
async downloadSelected() {
|
||||
|
||||
Reference in New Issue
Block a user