Update indicator LED switch using another property

- Update indicator LED redfish endpoint based on 'LocationIndicatorActive' property.
- Updated both ServerLED and Overview page.

Signed-off-by: Suren Neware <sneware9@in.ibm.com>
Change-Id: Id47133e4834b658d49911be87d93f7985519a6d2
diff --git a/src/views/Control/ServerLed/ServerLed.vue b/src/views/Control/ServerLed/ServerLed.vue
index 73ec704..6ec6230 100644
--- a/src/views/Control/ServerLed/ServerLed.vue
+++ b/src/views/Control/ServerLed/ServerLed.vue
@@ -9,12 +9,10 @@
               v-model="indicatorLed"
               data-test-id="serverLed-checkbox-switchIndicatorLed"
               name="check-button"
-              value="Lit"
-              unchecked-value="Off"
               switch
               @change="changeLedValue"
             >
-              <span v-if="indicatorLed && indicatorLed !== 'Off'">
+              <span v-if="indicatorLed">
                 {{ $t('global.status.on') }}
               </span>
               <span v-else>
@@ -65,10 +63,10 @@
         .then((message) => this.successToast(message))
         .catch(({ message }) => {
           this.errorToast(message);
-          if (indicatorLed === 'Off') {
-            this.indicatorLed === 'Lit';
+          if (!indicatorLed) {
+            this.indicatorLed === true;
           } else {
-            this.indicatorLed === 'Off';
+            this.indicatorLed === false;
           }
         });
     },