Skip to content

Commit

Permalink
initialize event search with empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinnessy-caci committed Aug 2, 2024
1 parent 78fa610 commit 9eb8c09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ npm run build
After building the core packages, install them as dependencies in the `instance` package.
```bash
cd instance
npm i --omit dev ../service ../web-app ../plugins/nga-msi
npm i --omit dev ../service ../web-app/dist/app ../plugins/nga-msi
```
The project's root [`package.json`](./package.json) provides some convenience script entries to install, build, and run
the MAGE server components, however, those are deprecated and will likely go away after migrating to NPM 7+'s
Expand Down
1 change: 1 addition & 0 deletions web-app/src/ng1/admin/events/events.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class AdminEventsController {
this.filter = 'active'; // possible values all, active, complete
this.page = 0;
this.itemsPerPage = 10;
this.eventSearch = '';

this.projection = {
name: true,
Expand Down

0 comments on commit 9eb8c09

Please sign in to comment.