Do not clear history when opening a dashboard

A user may want to bring up a dashboard to search for a change
during the process of reviewing one or more changes.  Therefore,
do not assume that the screen history should be cleared when
displaying a dashboard.  This way the user may resume their
previous task.

Change-Id: Iffdd56fedae2b20ebd680c41c3086d7558e1ba0b
This commit is contained in:
James E. Blair 2015-04-07 08:39:39 -07:00
parent d5c8577001
commit dbe0f37b04
1 changed files with 0 additions and 1 deletions

View File

@ -510,7 +510,6 @@ class App(object):
self.doSearch("status:open is:held")
elif key in self.config.dashboards:
d = self.config.dashboards[key]
self.clearHistory()
view = view_change_list.ChangeListView(self, d['query'], d['name'])
self.changeScreen(view)