Skip to content
This repository was archived by the owner on Oct 11, 2018. It is now read-only.

Commit 412516b

Browse files
authored
Merge pull request #696 from freenas/fix-22568
Filter disks that support SMART.
2 parents 8f666f5 + 2e5c490 commit 412516b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/inspectors/calendar-task.reel/smart-args.reel/smart-args.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ exports.SmartArgs = AbstractInspector.specialize({
77
value: function() {
88
var self = this;
99
this._sectionService.listDisks().then(function(disks) {
10-
self.disks = _.sortBy(_.filter(disks, { online: true }), 'path');
10+
self.disks = _.sortBy(_.filter(disks, { online: true, smart: true }), 'path');
1111
});
1212
this.testTypes = DiskSelftestType.members.map(function(x) {
1313
return {

0 commit comments

Comments
 (0)