Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
adapt
ace
Commits
74172623
Commit
74172623
authored
Mar 31, 2017
by
Michael Ritter
Browse files
Fix the option state choice and remove the NO_FILTER option
parent
cff5a8d7
Changes
2
Show whitespace changes
Inline
Side-by-side
ace-am/src/main/java/edu/umiacs/ace/monitor/support/CStateBean.java
View file @
74172623
...
...
@@ -7,9 +7,9 @@ package edu.umiacs.ace.monitor.support;
*/
public
enum
CStateBean
{
NO_FILTER
(
""
),
ACTIVE
(
"A"
),
ERROR
(
"E"
),
INTERRUPTED
(
"I"
),
NEVER_SCANNED
(
"N"
);
private
final
String
state
;
...
...
ace-am/src/main/webapp/status.jsp
View file @
74172623
...
...
@@ -160,6 +160,7 @@
<div
class=
"input"
>
<span
class=
"input-group-addon"
>
State
</span>
<select
name=
"state"
id=
"state-filter"
class=
"form-select"
>
<option
value=
""
>
Select a Collection State
</option>
<c:forEach
var=
"s"
items=
"
${
states
}
"
>
<c:choose>
<c:when
test=
"
${
s
.
state
eq
state
}
"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment