Skip to content

Commit

Permalink
replaced combo box into checkbox on Robot modal (regression fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Jul 29, 2024
1 parent e15376b commit a576890
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public AnswerItem<RobotExecutor> readByKey(String robot, String executor) {

@Override
public List<RobotExecutor> readBestByKey(String robot) throws CerberusException {
final String query = "SELECT * FROM `robotexecutor` rbe WHERE `robot` = ? and active = 'Y' order by DateLastExeSubmitted asc, `rank` asc";
final String query = "SELECT * FROM `robotexecutor` rbe WHERE `robot` = ? and isactive = true order by DateLastExeSubmitted asc, `rank` asc";

// Debug message on SQL.
if (LOG.isDebugEnabled()) {
Expand Down

0 comments on commit a576890

Please sign in to comment.