File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -188,14 +188,14 @@ document.addEventListener("DOMContentLoaded", function () {
188188
189189 const title = document . createElement ( "p" ) ;
190190 title . className = "markdown-alert-title" ;
191- const alertMeta = GITHUB_ALERT_META [ alertType ] || { label : markerMatch [ 1 ] , path : "" , viewBox : "0 0 16 16" } ;
191+ const alertMeta = GITHUB_ALERT_META [ alertType ] || { label : markerMatch [ 1 ] , path : "" } ;
192192 const icon = document . createElement ( "span" ) ;
193193 icon . className = "markdown-alert-icon" ;
194194 icon . setAttribute ( "aria-hidden" , "true" ) ;
195195
196196 if ( alertMeta . path ) {
197197 const svg = document . createElementNS ( "http://www.w3.org/2000/svg" , "svg" ) ;
198- svg . setAttribute ( "viewBox" , alertMeta . viewBox || "0 0 16 16 " ) ;
198+ svg . setAttribute ( "viewBox" , alertMeta . viewBox || "0 0 512 512 " ) ;
199199 const path = document . createElementNS ( "http://www.w3.org/2000/svg" , "path" ) ;
200200 path . setAttribute ( "d" , alertMeta . path ) ;
201201 svg . appendChild ( path ) ;
You can’t perform that action at this time.
0 commit comments