Skip to content

Commit

Permalink
ui: add queued filter
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Jan 20, 2020
1 parent cfb1f12 commit f7b4261
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/src/store/collection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ const actions: ActionTree<State, RootState> = {
case 'unknown':
request.status = api.CollectionListStatusEnum.Unknown;
break;
case 'queued':
request.status = api.CollectionListStatusEnum.Queued;
break;
}

if (state.query.query) {
Expand Down
1 change: 1 addition & 0 deletions ui/src/views/CollectionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<option value="error">Error</option>
<option value="done">Done</option>
<option value="in progress">In progress</option>
<option value="queued">Queued</option>
</b-form-select>
</div>
<div class="form-group col-12 col-sm-6 col-md-2">
Expand Down

0 comments on commit f7b4261

Please sign in to comment.