From 643447e78ce338bc18a1dea5282780cea25fdbc7 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 18 Jun 2013 15:24:32 -0700 Subject: [PATCH] UI: Remove excessive fields from disk offering list view Several new fields were causing disk offering list view to overflow. These were removed from the table listing, and are still viewable from the detail page. --- ui/scripts/configuration.js | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 150f244ff3c..b1a68512382 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -943,34 +943,6 @@ else return "N/A"; } - }, - diskBytesReadRate: { - label: 'label.disk.bytes.read.rate', - validation: { - required: false, //optional - number: true - } - }, - diskBytesWriteRate: { - label: 'label.disk.bytes.write.rate', - validation: { - required: false, //optional - number: true - } - }, - diskIopsReadRate: { - label: 'label.disk.iops.read.rate', - validation: { - required: false, //optional - number: true - } - }, - diskIopsWriteRate: { - label: 'label.disk.iops.write.rate', - validation: { - required: false, //optional - number: true - } } },