From 699cd8d4d3cb1b0d1e5d2b2bad67b0757b15aa88 Mon Sep 17 00:00:00 2001
From: Charly <maeder@cines.fr>
Date: Thu, 22 Jul 2021 12:18:12 +0200
Subject: [PATCH] Fix bug in dialog

---
 src/app/app.module.ts                        | 2 +-
 src/app/repository/repository.component.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index e1a745212..8c31ce0ad 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -94,7 +94,7 @@ import { NbDialogModule } from '@nebular/theme';
     NbToastrModule.forRoot(),
     NbDialogModule.forRoot(),
   ],
-
+  entryComponents: [DatasetsDialogComponent],
   providers: [
     AppConfiguration,
     ParseXmlService,
diff --git a/src/app/repository/repository.component.html b/src/app/repository/repository.component.html
index a864d608e..baabf0007 100644
--- a/src/app/repository/repository.component.html
+++ b/src/app/repository/repository.component.html
@@ -23,7 +23,7 @@
   </div>
   <div class="form-group">
     <label>url</label>
-    <input  type="text" class="form-control" formControlName="repourl">
+    <input  type="text" class="form-control" formControlName="repourl" required>
   </div>
   <div class="form-group">
     <label>Version</label>
-- 
GitLab