Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up[Angular] Member 'd' is not callable #234
Closed
Comments
|
I had the same issue, managed a workaround where I add the function call to the assignment. <ng-template #content let-ca="close('a')" let-cb="close('b')" let-d="dismiss()">
<button (click)="ca">Close with 'A'</button>
</ng-template> |
kyliau
added a commit
to kyliau/angular
that referenced
this issue
Nov 13, 2019
This commit fixes a long standing bug whereby a template variable that gets initialized to a class method gets resolved to the Any type, thus when it is called the language service produces error "Member X is not callable". PR closes angular#16643 PR closes angular/vscode-ng-language-service#234
kyliau
added a commit
to kyliau/angular
that referenced
this issue
Nov 13, 2019
This commit fixes a long standing bug whereby a template variable that gets initialized to a class method gets resolved to the Any type, thus when it is called the language service produces error "Member X is not callable". PR closes angular#16643 PR closes angular/vscode-ng-language-service#234
kyliau
added a commit
to kyliau/angular
that referenced
this issue
Nov 13, 2019
This commit fixes a long standing bug whereby a template variable that gets initialized to a class method gets resolved to the Any type, thus when it is called the language service produces error "Member X is not callable". PR closes angular#16643 PR closes angular/vscode-ng-language-service#234
|
Sorry it took so long, angular/angular#33782 should fix this. |
kyliau
added a commit
to kyliau/angular
that referenced
this issue
Nov 14, 2019
This commit fixes a long standing bug whereby a template variable that gets initialized to a class method gets resolved to the Any type, thus when it is called the language service produces error "Member X is not callable". PR closes angular#16643 PR closes angular/vscode-ng-language-service#234
alxhub
added a commit
to angular/angular
that referenced
this issue
Nov 15, 2019
This commit fixes a long standing bug whereby a template variable that gets initialized to a class method gets resolved to the Any type, thus when it is called the language service produces error "Member X is not callable". PR closes #16643 PR closes angular/vscode-ng-language-service#234 PR Close #33782
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If I use default Modal sample from ng-bootstrap I get errors like
using
@ng-bootstrap/ng-bootstrap: "^1.0.0"