File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/ng-generate/table/generators Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -411,14 +411,14 @@ export class TsFilterServiceGenerator {
411411 if ( property . effectiveDataType ?. isComplex && property . characteristic instanceof DefaultSingleEntity ) {
412412 const complexProps = this . options . templateHelper . getComplexProperties ( property , this . options ) ;
413413 complexProps . properties . forEach ( ( complexProp : Property ) => {
414- if ( ! this . options . templateHelper . isStringProperty ( complexProp ) ) {
414+ if ( ! this . options . templateHelper . isStringProperty ( complexProp ) && ! this . options . templateHelper . isMultiStringProperty ( complexProp ) ) {
415415 return ;
416416 }
417417 stringProps . push ( `'${ complexProps . complexProp } .${ complexProp . name } '` ) ;
418418 return ;
419419 } ) ;
420420 }
421- if ( this . options . templateHelper . isStringProperty ( property ) ) {
421+ if ( this . options . templateHelper . isStringProperty ( property ) || this . options . templateHelper . isMultiStringProperty ( property ) ) {
422422 stringProps . push ( `'${ property . name } '` ) ;
423423 }
424424 } ) ;
You can’t perform that action at this time.
0 commit comments