瀏覽代碼

HUE-6815 [core] Enable new top search layout by default

Tried to add clearable to search input but it breaks it.
Romain Rigaux 8 年之前
父節點
當前提交
f0158ee
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 1 1
      desktop/core/src/desktop/conf.py

+ 1 - 1
desktop/conf.dist/hue.ini

@@ -173,7 +173,7 @@
   ## use_new_editor=true
 
   # Choose whether to enable the new global search or not.
-  ## use_new_global_search=false
+  ## use_new_global_search=true
 
   # Choose whether to enable the new generic context popover or not.
   ## use_new_context_popover=false

+ 1 - 1
desktop/conf/pseudo-distributed.ini.tmpl

@@ -177,7 +177,7 @@
   ## use_new_editor=true
 
   # Choose whether to enable the new global search or not.
-  ## use_new_global_search=false
+  ## use_new_global_search=true
 
   # Choose whether to enable the new SQL syntax checker or not
   ## enable_sql_syntax_check=false

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -1316,7 +1316,7 @@ ENABLE_SQL_SYNTAX_CHECK = Config( # To remove when syntax check is ready
 
 USE_NEW_GLOBAL_SEARCH = Config( # To remove when the new global search is ready
   key='use_new_global_search',
-  default=False,
+  default=True,
   type=coerce_bool,
   help=_('Choose whether to use the new global search or not.')
 )