2015-06-10 59 views
2

每次我做JIRA中搜索時,此彈出消息:隱藏「智能查詢激活」的消息在吉拉

enter image description here

現在我要啓用智能查詢,但我不需要此消息每次我做了一個搜索,特別是因爲它被放置在一些按鈕的頂部...

有沒有什麼辦法可以禁用它?

回答

1

似乎沒有辦法禁用此功能,但它不會發生在每個搜索中。它只會發生觸發智能查詢功能的某些關鍵字。例如,與JIRA中的狀態相匹配的單詞(例如打開,解析)。

一種解決方法是在這個JIRA問題描述: https://jira.atlassian.com/browse/JRA-44561

<script type="text/javascript"> 
 
jQuery(window).load(function(){ 
 
\t /* 
 
\t Hides the blank Announcement Banner div. 
 
\t If using an announcement banner already, 
 
\t simply comment or remove the line below 
 
\t */ 
 
\t AJS.$("#announcement-banner").hide(); 
 

 
\t /* 
 
\t If this page is the issue navigator and running a JQL query (not a filter) 
 
\t Checks if there is a "AUI Flag Container". If there is one and the text is 
 
\t "Smart querying activated", hides the banner. 
 
\t */ 
 
\t if (window.location.pathname.includes("/issues/") && window.location.search.includes("?jql=")){ 
 
\t \t test = AJS.$("#aui-flag-container") 
 
\t \t if (test.text().includes("Smart querying activated")) { 
 
\t \t \t AJS.$("#aui-flag-container").hide(); 
 
\t \t } 
 
\t } 
 
}); 
 
</script>

基本運行一些JavaScript插入(可定製)公佈的一面旗幟。

非常煩人,但像往常一樣Atlassian說,他們不會解決它。