aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.module.ts
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2023-02-10 23:32:13 +0200
committerAlex Shnitman <alexta69@gmail.com>2023-02-10 23:32:13 +0200
commit50501f0aadf83f3d210a644167e41eda320b2e65 (patch)
tree4868a7c0ae2a061c137dc886383617fb104f38c5 /ui/src/app/app.module.ts
parentAdded download button to the ui (diff)
parentupgrade dependencies (diff)
downloadmetube-50501f0aadf83f3d210a644167e41eda320b2e65.tar.gz
metube-50501f0aadf83f3d210a644167e41eda320b2e65.tar.bz2
metube-50501f0aadf83f3d210a644167e41eda320b2e65.zip
Merge remote-tracking branch 'origin/master' into download_to_device
Diffstat (limited to 'ui/src/app/app.module.ts')
-rw-r--r--ui/src/app/app.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/src/app/app.module.ts b/ui/src/app/app.module.ts
index 6ad5978..8eddbca 100644
--- a/ui/src/app/app.module.ts
+++ b/ui/src/app/app.module.ts
@@ -10,6 +10,7 @@ import { AppComponent } from './app.component';
import { EtaPipe, SpeedPipe, EncodeURIComponent } from './downloads.pipe';
import { MasterCheckboxComponent, SlaveCheckboxComponent } from './master-checkbox.component';
import { MeTubeSocket } from './metube-socket';
+import { NgSelectModule } from '@ng-select/ng-select';
@NgModule({
declarations: [
@@ -25,7 +26,8 @@ import { MeTubeSocket } from './metube-socket';
FormsModule,
NgbModule,
HttpClientModule,
- FontAwesomeModule
+ FontAwesomeModule,
+ NgSelectModule
],
providers: [CookieService, MeTubeSocket],
bootstrap: [AppComponent]
bgstack15