Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
[BZ 1022943] Fix delay selection dialog in UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
metlos committed Apr 29, 2014
1 parent 482419d commit 8746ef1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent cl
long delay;
if (MSG.view_admin_plugins_update_on_agents_now().equals(scheduling.getSelected())) {
delay = 0;
} else if (MSG.view_admin_plugins_update_on_agents_schedule().equals(scheduling.getSelected())) {
} else if (MSG.view_admin_plugins_update_on_agents_delayed().equals(scheduling.getSelected())) {
Integer value = (Integer) startDelay.getValue();
TimeUnit u = startDelay.getValueUnit();

Expand Down

0 comments on commit 8746ef1

Please sign in to comment.