From 63d8d11714440bdc2e7501b0ecdf6ac3ba9385f4 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Mon, 4 Sep 2017 17:05:13 -0700 Subject: [PATCH] [webui] Checkboxes should go to the left of their labels (#932) --- python/ray/experimental/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/experimental/ui.py b/python/ray/experimental/ui.py index 0945d4392..80e515cb1 100644 --- a/python/ray/experimental/ui.py +++ b/python/ray/experimental/ui.py @@ -375,7 +375,7 @@ def task_timeline(): label_options = widgets.Label(value='View options:', layout=widgets.Layout(width='100px')) start_box, end_box, range_slider, time_opt = get_sliders(False) - display(widgets.HBox([label_tasks, task_dep, label_objects, obj_dep])) + display(widgets.HBox([task_dep, label_tasks, obj_dep, label_objects])) display(widgets.HBox([label_options, breakdown_opt])) display(path_input)