question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Plugin does not work / Troubleshooting section available?

See original GitHub issue

Hi,

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:closed
  • Created 6 years ago
  • Comments:10 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
Maximaximumcommented, Oct 17, 2017

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.

0reactions
angular-automatic-lock-bot[bot]commented, Feb 17, 2020

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found