Plugin does not work / Troubleshooting section available?
See original GitHub issueHi,
Your plug-in does not work for me.
I installed the extension, added a userlist.component.ts and a userlist.component.html, which is set as template in my component class. I do not get any intellisense in my html template. How can I fix this? Do you have any log level settings? How can I even find out what’s wrong. I only get for example getHoverAt: 6ms, getDefinitionAt: 0ms output entries.
userList.component.html:
<table>
<thead>
<th>ID</th>
<th>Vorname</th>
<th>Nachname</th>
<th>email</th>
<th>Kontostand</th>
</thead>
<tbody>
<tr *ngFor="let user of users">
<td>{{user.id}}</td>
<td>{{user.firstName}}</td>
<td>{{user.secondName}}</td>
<td>{{user.email}}</td>
<td>{{user.balance | currency:'EUR':true}}</td>
</tr>
</tbody>
</table>
The userlist.component.ts
import {Component} from "@angular/core";
import { ICustomer } from "./ICustomer";
@Component({
selector: "bs-user-admin",
templateUrl: "app/user/userList.component.html"
})
export class UserAdminstrationComponent {
users: ICustomer[] = [
{ firstName: "Hans", secondName: "Wurst", id: 1, balance: 0, email: "hans@wurst.de", passwordHash: "asdfefaw" },
{ firstName: "Sepp", secondName: "Meier", id: 1, balance: 0, email: "sepp@meier.de", passwordHash: "aasgserd" }
]
}
Thanks
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
WordPress Plugin Troubleshooting: What To Do When Your ...
Go to the Plugins page. · Click the Deactivate link associated with the plugin causing the issue. · Check your site. · If...
Read more >Solve Problems With Plugins – WordPress.com Support
Follow these steps to troubleshoot issues on your site related to plugins and third-party themes: ... Expand the 'Available plugins' section.
Read more >Photoshop plug-ins troubleshooting - Adobe Support
Learn how to identify and troubleshoot issues with plug-ins in Adobe Photoshop.
Read more >How to Troubleshoot WordPress Plugins without the ...
Learn how to troubleshoot plugins without logging into the Wordpress ... Login to cPanel; Under the Files Section, click on File Manager
Read more >Plugin Detective – Troubleshooting Conflicts - WordPress.org
Plugin Detective helps you troubleshoot issues on your site quickly and easily to find the cause of a problem. Once the culprit is...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I had a similar issue: nothing worked at all, I got only the general intellisense hints, just as if the extension was not installed. However, when I removed the extension and re-installed it again, it started to work. I wonder, though, how much time will it last until it goes down again.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.