File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -219,17 +219,17 @@ const service = {
219219 if ( key !== 'submissionId' && key !== 'formVersionId' && key !== 'formId' ) {
220220 if ( ! Array . isArray ( data [ key ] ) && ! typeUtils . isObject ( data [ key ] ) ) {
221221 //Search for date/time match in properties
222- if ( this . matchDate ( data [ key ] , search ) ) {
222+ if ( service . matchDate ( data [ key ] , search ) ) {
223223 result . total = result . total + 1 ;
224224 return true ;
225225 }
226226 //Search for string match in properties
227- if ( this . matchString ( data [ key ] , search ) ) {
227+ if ( service . matchString ( data [ key ] , search ) ) {
228228 result . total = result . total + 1 ;
229229 return true ;
230230 }
231231 //Search to match numeric values in properties
232- if ( this . matchNum ( data [ key ] , search ) ) {
232+ if ( service . matchNum ( data [ key ] , search ) ) {
233233 result . total = result . total + 1 ;
234234 return true ;
235235 }
You can’t perform that action at this time.
0 commit comments