Style fixes and compile error fix to updater badge

1) Added two missing semicolons.
2) Added missing more-info js file for updater badge.
This commit is contained in:
Ryan Kraus 2015-11-15 05:54:49 -05:00
parent 7d1c40db2e
commit d9ac419639
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export default new Polymer({
case 'script':
return state.state === 'on' ? 'blue' : 'grey';
case 'updater':
return 'blue'
return 'blue';
default:
return '';
}
@ -83,7 +83,7 @@ export default new Polymer({
case 'script':
return domainIcon(state.domain, state.state);
case 'updater':
return domainIcon(state.domain)
return domainIcon(state.domain);
case 'sun':
return state.state === 'above_horizon' ?
domainIcon(state.domain) : 'mdi:brightness-3';

View File