In DisplayIssues.ascx.cs (User Control for displaying Issues), when the DataSource is empty, the OptionsContainerPanel is hidden (see code around line 230).
However, if you select a new view from the dropdown (e.g. "All Issues"), and there are now results in the DataSource, then the OptionsContainerPanel doesn't become visible again (as it should).
Tried to fix this issue by adding, in DisplayIssues.ascx.cs, the following code around line 116 (placed it just below "ScrollPanel.Visible = true;"):
* Code to insert near line 116: OptionsContainerPanel.Visible = true;
However, that didn't completely fix the issue. I am still investigating.
However, if you select a new view from the dropdown (e.g. "All Issues"), and there are now results in the DataSource, then the OptionsContainerPanel doesn't become visible again (as it should).
Tried to fix this issue by adding, in DisplayIssues.ascx.cs, the following code around line 116 (placed it just below "ScrollPanel.Visible = true;"):
* Code to insert near line 116: OptionsContainerPanel.Visible = true;
However, that didn't completely fix the issue. I am still investigating.