You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[~/example]$ sapp --database-name sapp.db filter delete "filter name 1""filter name 2""filter name 3"
239
239
```
240
240
241
241
### Filtering list of issues
242
242
You can apply a filter to a list of issues by run number. For example, the following command will show you a list of issues after applying `example-filter` to run `1`:
You can also apply a list of filters to a single list of issues by run number. SAPP will apply each filter individually from the directory you specify to the list of issues and merge results into a single list of issues to show you. For example, the following command will show you a list of issues after applying every filter in `list_of_filters` to run `1`:
If you make any changes to files under `sapp/ui/frontend/*`, you will need to run `npm install` once to install dependencies and `npm run-script build` each time you make changes before running the flask server to see the changes you made reflected:
273
273
274
274
Installing dependencies:
275
-
```
275
+
```shell
276
276
(sapp) $ cd sapp/ui/frontend && npm install
277
277
```
278
278
279
279
Build static files and run the flask server:
280
-
```
280
+
```shell
281
281
(sapp) $ cd sapp/ui/frontend && npm run-script build
0 commit comments