@@ -23,7 +23,7 @@ import * as tiny from "./tiny_mappings.js";
2323 const buildTargetElement = document . getElementById ( "build-target" ) ;
2424 const diffViewerElement = document . getElementById ( "diff-viewer" ) ;
2525
26- const hideClassPath = document . getElementById ( "hide-class-path " ) ;
26+ const hidePackage = document . getElementById ( "hide-package " ) ;
2727
2828 async function updateFeatherBuilds ( ) {
2929 if (
@@ -101,7 +101,7 @@ import * as tiny from "./tiny_mappings.js";
101101 }
102102
103103 function diffMappings ( source , target ) {
104- printDiff ( diffMemberArray ( source . classes , target , hideClassPath . checked ) , "classes-diff" )
104+ printDiff ( diffMemberArray ( source . classes , target , hidePackage . checked ) , "classes-diff" )
105105 printDiff ( diffMemberArray ( source . methods , target ) , "methods-diff" )
106106 printDiff ( diffMemberArray ( source . fields , target ) , "fields-diff" )
107107 }
@@ -160,7 +160,7 @@ import * as tiny from "./tiny_mappings.js";
160160 async ( _ ) => await updateFeatherDiff ( ) ,
161161 ) ;
162162
163- hideClassPath . addEventListener ( "change" , async ( _ ) => {
163+ hidePackage . addEventListener ( "change" , async ( _ ) => {
164164 await updateFeatherDiff ( ) ;
165165 } ) ;
166166
0 commit comments