File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed 
tests/dummy/app/controllers Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export default class IvyTabsTabComponent extends Component {
105105  select ( )  { 
106106    const  onSelect  =  this . args . onSelect ; 
107107    if  ( 
108+       ! this . isSelected  && 
108109      ! this . isDestroying  && 
109110      ! this . isDestroyed  && 
110111      typeof  onSelect  ===  'function' 
Original file line number Diff line number Diff line change @@ -28,9 +28,7 @@ export default class DynamicTabsController extends Controller {
2828
2929  @action 
3030  updateDynamicSelection ( item )  { 
31-     if  ( this . selection  !==  item )  { 
32-       this . selection  =  item ; 
33-     } 
31+     this . selection  =  item ; 
3432  } 
3533
3634  get  checkedItems ( )  { 
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ export default class QueryParamsController extends Controller {
1111
1212  @action 
1313  updateQuerySelection ( newValue )  { 
14-     if  ( this . selection  !==  newValue )  { 
15-       this . selection  =  newValue ; 
16-     } 
14+     this . selection  =  newValue ; 
1715  } 
1816} 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments