summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 6413c80ed9..6028d4d775 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -1111,13 +1111,13 @@ def configvars(request, build_id):
1111 'search_term':search_term, 1111 'search_term':search_term,
1112 # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns 1112 # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns
1113 'tablecols' : [ 1113 'tablecols' : [
1114 {'name': 'Variable ', 1114 {'name': 'Variable',
1115 'qhelp': "BitBake is a generic task executor that considers a list of tasks with dependencies and handles metadata that consists of variables in a certain format that get passed to the tasks", 1115 'qhelp': "BitBake is a generic task executor that considers a list of tasks with dependencies and handles metadata that consists of variables in a certain format that get passed to the tasks",
1116 'dclass' : "span3", 1116 'dclass' : "span3",
1117 'orderfield': _get_toggle_order(request, "variable_name"), 1117 'orderfield': _get_toggle_order(request, "variable_name"),
1118 'ordericon':_get_toggle_order_icon(request, "variable_name"), 1118 'ordericon':_get_toggle_order_icon(request, "variable_name"),
1119 }, 1119 },
1120 {'name': 'Value ', 1120 {'name': 'Value',
1121 'qhelp': "The value assigned to the variable", 1121 'qhelp': "The value assigned to the variable",
1122 'dclass': "span4", 1122 'dclass': "span4",
1123 }, 1123 },
@@ -1137,7 +1137,7 @@ def configvars(request, build_id):
1137 ] 1137 ]
1138 }, 1138 },
1139 }, 1139 },
1140 {'name': 'Description ', 1140 {'name': 'Description',
1141 'qhelp': "A brief explanation of the variable", 1141 'qhelp': "A brief explanation of the variable",
1142 'clclass': 'description', 'hidden' : 0, 1142 'clclass': 'description', 'hidden' : 0,
1143 'dclass': "span5", 1143 'dclass': "span5",