@@ -5271,7 +5271,7 @@ var templateExportHook = {"1":function(container,depth0,helpers,partials,data) {
5271
5271
+ "("
5272
5272
+ ( ( stack1 = lookupProperty ( helpers , "if" ) . call ( alias1 , lookupProperty ( depth0 , "parameters" ) , { "name" :"if" , "hash" :{ } , "fn" :container . program ( 12 , data , 0 ) , "inverse" :container . noop , "data" :data , "loc" :{ "start" :{ "line" :20 , "column" :52 } , "end" :{ "line" :28 , "column" :18 } } } ) ) != null ? stack1 : "" )
5273
5273
+ ");\n },\n ...options\n });\n };\n\n"
5274
- + ( ( stack1 = lookupProperty ( helpers , "contains" ) . call ( alias1 , lookupProperty ( depth0 , "pascalcase" ) , lookupProperty ( depth0 , " name") , "List" , { "name" :"contains" , "hash" :{ } , "fn" :container . program ( 18 , data , 0 ) , "inverse" :container . noop , "data" :data , "loc" :{ "start" :{ "line" :34 , "column" :3 } , "end" :{ "line" :61 , "column" :16 } } } ) ) != null ? stack1 : "" )
5274
+ + ( ( stack1 = lookupProperty ( helpers , "contains" ) . call ( alias1 , lookupProperty ( depth0 , "name" ) , "List" , { "name" :"contains" , "hash" :{ } , "fn" :container . program ( 18 , data , 0 ) , "inverse" :container . noop , "data" :data , "loc" :{ "start" :{ "line" :34 , "column" :3 } , "end" :{ "line" :61 , "column" :16 } } } ) ) != null ? stack1 : "" )
5275
5275
+ "\n\n" ;
5276
5276
} , "6" :function ( container , depth0 , helpers , partials , data ) {
5277
5277
var stack1 , lookupProperty = container . lookupProperty || function ( parent , propertyName ) {
@@ -7205,7 +7205,7 @@ const registerHandlebarHelpers = (root) => {
7205
7205
return a !== b ? options . fn ( this ) : options . inverse ( this ) ;
7206
7206
} ) ;
7207
7207
Handlebars . registerHelper ( 'contains' , function ( value , search , options ) {
7208
- return value . includes ( search ) ? options . fn ( this ) : options . inverse ( this ) ;
7208
+ return value . toLowerCase ( ) . includes ( search . toLowerCase ( ) ) ? options . fn ( this ) : options . inverse ( this ) ;
7209
7209
} ) ;
7210
7210
Handlebars . registerHelper ( 'containsSpaces' , function ( value , options ) {
7211
7211
return / \s + / . test ( value ) ? options . fn ( this ) : options . inverse ( this ) ;
0 commit comments