File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6666}
6767
6868.pokemon-despawn-timers {
69- grid-column : 1 ;
69+ grid-column : 2 ;
7070 grid-row : 5 ;
7171 margin : auto;
7272 padding : 5px ;
8989}
9090
9191.pokemon-other-timers {
92- grid-column : 2 ;
92+ grid-column : 1 ;
9393 grid-row : 5 ;
9494 margin : auto;
9595 padding : 5px ;
Original file line number Diff line number Diff line change @@ -3077,7 +3077,7 @@ const getPokemonPopupContent = (pokemon) => {
30773077 }
30783078
30793079 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 ) {
30813081 const ivColors = { 0 : 'red' , 66 : 'orange' , 82 : 'yellow' , 100 : 'green' }
30823082 const ivPercent = ( ( pokemon . atk_iv + pokemon . def_iv + pokemon . sta_iv ) / .45 ) . toFixed ( 2 ) ;
30833083 let selectedColor
You can’t perform that action at this time.
0 commit comments