Skip to content

Commit

Permalink
Fixing bug displaying back button
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryfcz committed Feb 3, 2020
1 parent dc24ff9 commit 4b8a65e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "harmony-card",
"version": "0.9.0",
"version": "0.9.1",
"description": "Lovelace harmony-card",
"keywords": [
"home-assistant",
Expand Down
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HarmonyButtonConfig } from "./types";

export const CARD_VERSION = '0.9.0';
export const CARD_VERSION = '0.9.1';

export const DEFAULT_BUTTONS: { [key: string]: HarmonyButtonConfig } = {
'volume_down': {
Expand Down
2 changes: 1 addition & 1 deletion src/harmony-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class HarmonyCard extends LitElement {
${this.renderVolumeControls(this.hass, this._config, buttonConfig, currentActivityConfig)}
<div class="play-pause">
${this.renderIconButton(buttonConfig['skip_forward'], currentDevice)}
${this.renderIconButton(buttonConfig['skip_back'], currentDevice)}
${this.renderIconButton(buttonConfig['play'], currentDevice)}
${this.renderIconButton(buttonConfig['pause'], currentDevice)}
${this.renderIconButton(buttonConfig['skip_forward'], currentDevice)}
Expand Down

0 comments on commit 4b8a65e

Please sign in to comment.