Show drive letter on selection on Windows

Showing `\\.\PhysicalDriveN` makes no sense for a Windows user after
selecting based on drive letters on the dropdown.
This commit is contained in:
Juan Cruz Viotti 2015-12-31 22:04:42 -04:00
parent 255309aa76
commit 95d94d36d4

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>