luci-mod-admin-full: mount points SWAP fix 371/head
authorAndrija Vucinic <andrija.vucinic@gmail.com>
Sat, 25 Apr 2015 21:35:33 +0000 (23:35 +0200)
committerAndrija Vucinic <andrija.vucinic@gmail.com>
Sat, 25 Apr 2015 21:35:33 +0000 (23:35 +0200)
SWAP section was showing an error. Fixed it to display the devices/size properly.

modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab.lua

index fd61758..d4e834d 100644 (file)
@@ -190,7 +190,12 @@ dev.cfgvalue = function(self, section)
        if v then return "Label: %s" % v end
 
        v = Value.cfgvalue(self, section) or "?"
-       return size[v] and "%s (%s MB)" % {v, size[v]} or v
+       e = v and devices[v]
+       if v and e and e.size then
+               return "%s (%s MB)" % {v, e.size}
+       else
+               return v
+       end
 end
 
 return m