Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jtbgroup committed Dec 24, 2023
1 parent 0584fb6 commit 0e2c360
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Kodi MusicBrainz Card Development",
"image": "ludeeus/container:monster",
"context": "..",
"appPort": ["5002:5002", "10123:8123"],
"appPort": ["5002:5002", "11123:8123"],
"postCreateCommand": "npm install",
"runArgs": [
"-v",
Expand Down
14 changes: 0 additions & 14 deletions .eslintrc.js

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"lovelace",
"custom-cards"
],
"module": "kodi-musicbrainz-card.js",
"type":"module",
"module": "kodi-musicbrainz-card.mjs",
"repository": "git@github.com:jtbgroup/kodi-musicbrainz-card.git",
"author": "Gautier Vanderslyen <gautier.vanderslyen@gmail.com>",
"license": "MIT",
"dependencies": {
"@material/mwc-checkbox": "^0.27.0",
"change-perspective": "^1.0.1",
"compare-versions": "^6.1.0",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/kodi-musicbrainz-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class KodiMusicBrainzCard extends LitElement {
artistBtn.className = "mb_artist_btn";

const btn = document.createElement("ha-icon");
btn.setAttribute("icon", "mdi:disc");
btn.setAttribute("icon", "mdi:account");
btn.addEventListener("click", () => this.searchReleaseGroups(item["id"]));
artistBtn.append(btn);

Expand Down

0 comments on commit 0e2c360

Please sign in to comment.