File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ changes.
2222- Fix incorrect link to learn more about direct voters [ Issue 2647] ( https://github.com/IntersectMBO/govtool/issues/2647 )
2323- Fix missing No DRep found message on DRep Directory [ Issue 2889] ( https://github.com/IntersectMBO/govtool/issues/2889 )
2424- Fix displaying givenName placeholder instead of actual value on DRep card [ Issue 2888] ( https://github.com/IntersectMBO/govtool/issues/2888 )
25+ - Fix executing insertBefore on undefined node [ Issue 2878] ( https://github.com/IntersectMBO/govtool/issues/2878 )
2526
2627### Changed
2728
Original file line number Diff line number Diff line change 4242 s = d . getElementsByTagName ( "script" ) [ 0 ] ;
4343 g . async = true ;
4444 g . src = u + "matomo.js" ;
45- s . parentNode . insertBefore ( g , s ) ;
45+ if ( s && s . parentNode ) {
46+ s . parentNode . insertBefore ( g , s ) ;
47+ } else {
48+ d . head . appendChild ( g ) ;
49+ }
4650 } ) ( ) ;
4751 </ script >
4852 < div id ="root "> </ div >
You can’t perform that action at this time.
0 commit comments