luci-mod-admin-full: mount points SWAP fix
[project/luci.git] / 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 "?"
        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
 end
 
 return m