From 6466a0fc93cbae214fe2be8c06a152a917e1cae8 Mon Sep 17 00:00:00 2001 From: Jonah Hatfield Date: Thu, 24 Oct 2024 11:38:49 -0400 Subject: [PATCH] Making the rows of the websites service category modal table clickable, satisfying one item of issue #508 --- angular.json | 12 ++++++------ .../website-service-category-modal.component.ts | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/angular.json b/angular.json index d05d884b..20d10a6d 100644 --- a/angular.json +++ b/angular.json @@ -84,8 +84,8 @@ "budgets": [ { "type": "initial", - "maximumWarning": "4mb", - "maximumError": "5mb" + "maximumWarning": "6mb", + "maximumError": "7mb" }, { "type": "anyComponentStyle", @@ -111,8 +111,8 @@ "budgets": [ { "type": "initial", - "maximumWarning": "4mb", - "maximumError": "5mb" + "maximumWarning": "6mb", + "maximumError": "7mb" }, { "type": "anyComponentStyle", @@ -132,8 +132,8 @@ "budgets": [ { "type": "initial", - "maximumWarning": "4mb", - "maximumError": "5mb" + "maximumWarning": "6mb", + "maximumError": "7mb" }, { "type": "anyComponentStyle", diff --git a/src/app/components/modals/website-service-category-modal/website-service-category-modal.component.ts b/src/app/components/modals/website-service-category-modal/website-service-category-modal.component.ts index cee16438..547aaa43 100644 --- a/src/app/components/modals/website-service-category-modal/website-service-category-modal.component.ts +++ b/src/app/components/modals/website-service-category-modal/website-service-category-modal.component.ts @@ -96,10 +96,10 @@ export class WebsiteServiceCategoryModalComponent implements OnInit { const self = this; $(document).ready(() => { // Method to handle click events on the Related Systems table - $('#serviceCategoryRelSysTable').on('click-row.bs.table', function (e, row) { + $('#websiteServiceCategoryWebsites').on('click-row.bs.table', function (e, row) { // Hide First Modal before showing new modal $('#websiteServiceCategoryDetail').modal('hide'); - self.tableService.systemsTableClick(row); + self.tableService.websitesTableClick(row); }.bind(this)); });