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 committed Oct 24, 2024
1 parent eaf9cce commit 9021a52
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 @@ -86,8 +86,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -113,8 +113,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -134,8 +134,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 9021a52

Please sign in to comment.