Skip to content

Commit

Permalink
Prevented id collision, slight refactor, added contributer to package…
Browse files Browse the repository at this point in the history
….json
  • Loading branch information
pascalopitz committed Feb 18, 2017
1 parent 4f27df1 commit b39e562
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions app/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ h4 {
}

#zone-container,
#zone-container-inner,
#status-container,
#music-sources-container {
margin-left: 4.4px;
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sonos-controller-unofficial",
"description": "Unoffical sonos controller for linux.",
"version": "0.0.9",
"version": "0.0.10",
"author": "Pascal Opitz <[email protected]>",
"main": "main.js",
"dependencies": {
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
{
"name": "Basster",
"url": "https://github.com/Basster"
},
{
"name": "economysizegeek",
"url": "https://github.com/economysizegeek"
}
],
"build": {
Expand Down
8 changes: 1 addition & 7 deletions src/ui/components/Application.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,7 @@ class Application extends Component {
<div id="column-container">
<div id="zone-container">
<h4>ROOMS</h4>

<div id="zone-container" style="width:100%;display: flex; flex-direction: column;">
<div style="overflow-y: auto;">
<ZoneGroupList />
</div>
</div>

<ZoneGroupList />
</div>

<div id="status-container">
Expand Down
8 changes: 6 additions & 2 deletions src/ui/components/ZoneGroupList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ class ZoneGroupList extends Component {
});

return (
<div id="zone-wrapper">
{zoneGroupNodes}
<div id="zone-container-inner" style="width:100%;display: flex; flex-direction: column;">
<div style="overflow-y: auto;">
<div id="zone-wrapper">
{zoneGroupNodes}
</div>
</div>
</div>
);
}
Expand Down

0 comments on commit b39e562

Please sign in to comment.