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)); });