From 27bc5a0b822ac51a180a2eff6beb73e76c30f1a2 Mon Sep 17 00:00:00 2001 From: Rene Enriquez Date: Thu, 28 May 2020 11:16:30 -0500 Subject: [PATCH] fix: #297 removing pagination from table --- .../project-list/project-list.component.html | 58 +++++++------------ .../project-list/project-list.component.scss | 4 ++ 2 files changed, 26 insertions(+), 36 deletions(-) diff --git a/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.html b/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.html index de42d3dde..59474aaed 100644 --- a/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.html +++ b/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.html @@ -1,37 +1,23 @@ - - - - - - - - - - - - - -
Project
{{ project.name }} - - -
-
- +
+ + + + + + + + + + + + + +
Project
{{ project.name }} + + +
diff --git a/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.scss b/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.scss index 8099bafc8..8938bf72b 100644 --- a/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.scss +++ b/src/app/modules/customer-management/components/projects/components/project-list/project-list.component.scss @@ -1 +1,5 @@ @import '../../../../../../../styles/colors.scss'; + +.project-list { + max-height: 300px; overflow: auto; display:inline-block; width: 100%; +}