Skip to content

Commit

Permalink
Making the rows of the websites service category modal table clickabl…
Browse files Browse the repository at this point in the history
…e, satisfying one item of issue #508
  • Loading branch information
hatfieldjm4 authored and khgsa committed Oct 30, 2024
1 parent f2361d9 commit 6466a0f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -111,8 +111,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -132,8 +132,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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));
});

Expand Down

0 comments on commit 6466a0f

Please sign in to comment.