Remove unnecessary span from toggle component

A span element was removed that was added to support assistive
technology.This element was not needed since it was the same
text used in the toggle elements label causing it to be read
twice by screen readers.

Signed-off-by: Sneha Patel <Snehaben.Patel@ibm.com>
Change-Id: If56d6062c53e7e1ea47a8bf0b2ea17b085ead272
diff --git a/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue b/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue
index 8acf43c..65b48c2 100644
--- a/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue
@@ -25,9 +25,6 @@
                 switch
                 @change="toggleIdentifyLedSwitch"
               >
-                <span class="sr-only">
-                  {{ $t('pageInventory.systemIndicator.identifyLed') }}
-                </span>
                 <span v-if="systems.locationIndicatorActive">
                   {{ $t('global.status.on') }}
                 </span>
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
index 44a3585..c6f425d 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
@@ -36,9 +36,6 @@
           switch
           @change="toggleIdentifyLedSwitch"
         >
-          <span class="sr-only">
-            {{ $t('pageInventory.table.identifyLed') }}
-          </span>
           <span v-if="item.locationIndicatorActive">
             {{ $t('global.status.on') }}
           </span>