Skip to content

Commit

Permalink
TileView: Fix NPE
Browse files Browse the repository at this point in the history
(reference #56)
  • Loading branch information
piotrzarzycki21 committed Jun 12, 2024
1 parent 12caa8e commit f8eadc4
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@
{
this.currentState = 'startview';
this.proxy.selectedIndex = -1;
this.dg.selectedIndex = -1;
this.dg.selectedItem = null;
if (this.dg)
{
this.dg.selectedIndex = -1;
this.dg.selectedItem = null;
}
if (this.itemVO)
{
this.itemVO.DocumentationName = null;
Expand Down

0 comments on commit f8eadc4

Please sign in to comment.