File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tools/pfe-tools/custom-elements-manifest/lib Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -318,13 +318,14 @@ export class Manifest {
318318 path . posix . join (
319319 options . rootDir ,
320320 options . elementsDir ,
321- demo . source ?. href . replace ( options . sourceControlURLPrefix , '' ) ?? '' ,
321+ decodeURIComponent ( demo . source ?. href . replace ( options . sourceControlURLPrefix , '' ) ?? '' ) ,
322322 ) ) ;
323323 console . log ( {
324324 filePath,
325325 rootDir : options . rootDir ,
326326 elementsDir : options . elementsDir ,
327- path : demo . source ?. href . replace ( options . sourceControlURLPrefix , '' ) ,
327+ path :
328+ decodeURIComponent ( demo . source ?. href . replace ( options . sourceControlURLPrefix , '' ) ?? '' ) ,
328329 } ) ;
329330 const [ last = '' ] = filePath . split ( path . sep ) . reverse ( ) ;
330331 const filename = last . replace ( '.html' , '' ) ;
You can’t perform that action at this time.
0 commit comments