File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
66
}
67
67
68
68
.pokemon-despawn-timers {
69
- grid-column : 1 ;
69
+ grid-column : 2 ;
70
70
grid-row : 5 ;
71
71
margin : auto;
72
72
padding : 5px ;
89
89
}
90
90
91
91
.pokemon-other-timers {
92
- grid-column : 2 ;
92
+ grid-column : 1 ;
93
93
grid-row : 5 ;
94
94
margin : auto;
95
95
padding : 5px ;
Original file line number Diff line number Diff line change @@ -3077,7 +3077,7 @@ const getPokemonPopupContent = (pokemon) => {
3077
3077
}
3078
3078
3079
3079
const getIV = ( pokemon ) => {
3080
- if ( pokemon . atk_iv !== null && popupDetails . pokemon . iv ) {
3080
+ if ( pokemon . atk_iv !== null && pokemon . atk_iv !== undefined && popupDetails . pokemon . iv ) {
3081
3081
const ivColors = { 0 : 'red' , 66 : 'orange' , 82 : 'yellow' , 100 : 'green' }
3082
3082
const ivPercent = ( ( pokemon . atk_iv + pokemon . def_iv + pokemon . sta_iv ) / .45 ) . toFixed ( 2 ) ;
3083
3083
let selectedColor
You can’t perform that action at this time.
0 commit comments