diff --git a/src/app/employee/table/table.component.html b/src/app/employee/table/table.component.html index 67f3877..3fd06bf 100644 --- a/src/app/employee/table/table.component.html +++ b/src/app/employee/table/table.component.html @@ -40,7 +40,34 @@ - @if (employees) { + @if (!employees || employees.length === 0) { +
+
+
+ people +
+

+ No employees found +

+

+ Get started by adding your first employee to the directory. +

+ +
+
+ } @else {
@@ -112,13 +139,6 @@
- } @else { - - - people -

No employees found

-
-
} } diff --git a/src/app/qualification/table/table.component.html b/src/app/qualification/table/table.component.html index fb56cb9..182fbb1 100644 --- a/src/app/qualification/table/table.component.html +++ b/src/app/qualification/table/table.component.html @@ -40,7 +40,34 @@ - @if (qualifications) { + @if (!qualifications || qualifications.length === 0) { +
+
+
+ school +
+

+ No qualifications found +

+

+ Get started by adding your first qualification to the directory. +

+ +
+
+ } @else {
- } @else { - - - school -

No qualifications found

-
-
} }