diff --git a/dashboard/sharedComponents/input/input.component.ts b/dashboard/sharedComponents/input/input.component.ts
index 2eabc28a..09a3e6e0 100644
--- a/dashboard/sharedComponents/input/input.component.ts
+++ b/dashboard/sharedComponents/input/input.component.ts
@@ -48,6 +48,7 @@ export interface Option {
+ {{formControl.errors.error}}
{{label}}
diff --git a/utils/icons/icons.ts b/utils/icons/icons.ts
index f71df0d3..052f0272 100644
--- a/utils/icons/icons.ts
+++ b/utils/icons/icons.ts
@@ -106,3 +106,8 @@ export const close = {
name: 'close',
data: ''
}
+
+export const done = {
+ name: 'done',
+ data: ''
+}
diff --git a/utils/loading/loading.component.ts b/utils/loading/loading.component.ts
index 1636bfaf..53622c37 100644
--- a/utils/loading/loading.component.ts
+++ b/utils/loading/loading.component.ts
@@ -12,10 +12,10 @@ import {Component, Input} from "@angular/core";
-
-
-
+
+
+
`
})