Kent Kwee

Results 4 comments of Kent Kwee

@Lonli-Lokli Yes, there is a a workaround. You can define the following directive. ``` import { Directive, Input } from '@angular/core'; @Directive({ selector: '[appTemplateContext]', }) export class TemplateContextDirective { @Input()...

@Lonli-Lokli You can also use `[appTemplateContext]="{ $implicit: {prop: 42}, test: 'abc'}"` and the type will be inferred as `{ $implicit: {prop: number; test: string}` if it is that what you...

Okay. I understand. If you only want to specify the implicit context you could use a directive like ``` import { Directive, Input } from '@angular/core'; type ImplicitContext = {...

I also had this problem. I could work around this by removing the custom look and feel specific stuff from the initSoapUILookAndFeel method in StandaloneSoapUICore https://github.com/SmartBear/soapui/blob/next/soapui/src/main/java/com/eviware/soapui/StandaloneSoapUICore.java#L65 Basically changing it to...