We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc14ebd commit 08c5900Copy full SHA for 08c5900
src/overview/assets/index.ts
@@ -54,6 +54,6 @@ function installExtension(extName: string, displayName: string) {
54
});
55
}
56
57
-$("div[ext]").click(function () {
58
- installExtension($(this).attr("ext") || "", $(this).attr("displayName") || "");
+$("div[ext] > a").click(function () {
+ installExtension($(this.parentElement).attr("ext") || "", $(this.parentElement).attr("displayName") || "");
59
0 commit comments