Skip to content

Commit

Permalink
Fixed: #3780 - Form designer loses unsaved changes when switching
Browse files Browse the repository at this point in the history
perspectives
  • Loading branch information
delchev committed Apr 13, 2024
1 parent c2f5b5e commit 90be216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<li class="fd-list__navigation-item fd-list__navigation-item--condensed"
ng-class="{'fd-list__navigation-item--indicated' : perspective.id === activeId}"
ng-repeat="perspective in perspectives track by $index" tabindex="$index">
<a href="{{ ::perspective.link }}" title="{{ ::perspective.name }}" target="_self">
<a href="{{ ::perspective.link }}" title="{{ ::perspective.name }}" target="_blank">
<ng-include class="dg-perspective-icon" src="getIcon(perspective.icon)"></ng-include>
<span class="fd-list__navigation-item-text">{{ ::perspective.name }}</span>
<span class="fd-list__navigation-item-indicator" ng-if="perspective.id === activeId"></span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="sidebar list-group">
<a class="list-group-item" ng-repeat="perspective in perspectives" ng-class="{active: perspective.name===active}"
title="{{perspective.name}}" href="{{perspective.link}}" target="_self"><i
title="{{perspective.name}}" href="{{perspective.link}}" target="_blank"><i
class="fa fa-{{ perspective.image || 'question-circle'}} fa-2x"></i></a>
</div>

0 comments on commit 90be216

Please sign in to comment.