Merge pull request #65 from resin-io/feat/win-mountpoint-selection

Show drive letter on selection on Windows
This commit is contained in:
Juan Cruz Viotti 2016-01-01 15:10:53 -04:00
commit a26ba942d3

View File

@ -74,7 +74,8 @@
</div>
<div ng-show="app.selection.hasDrive()">
<span ng-bind="app.selection.getDrive().device"></span>
<span ng-if="app.platform == 'win32'" ng-bind="app.selection.getDrive().mountpoint + '\\'"></span>
<span ng-if="app.platform != 'win32'" ng-bind="app.selection.getDrive().device"></span>
</div>
</div>
</div>