Revert "Filtered the IP address to IPv4 on sessions page"

In bmcweb/41d61c8 ("Convert IPv4-mapped IPv6 ClientIP back to IPv4"),
bmcweb automatically converts IPv4 addresses to IPv4 format, workaround
in webui-vue is no longer needed.
The original patch also brings issue with displaying IPv6 addresses in
Sessions tab.
This reverts commit d902aa7b4f98b49d2a20ad8253bc15afd77e9349.

Tested:
Both IPv4 and IPv6 addresses are displayed correctly in Sessions.

Change-Id: Ib56398de51526ee72168b5bf8427278bcb6f9c17
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/src/store/modules/SecurityAndAccess/SessionsStore.js b/src/store/modules/SecurityAndAccess/SessionsStore.js
index 37ba9fc..54607ab 100644
--- a/src/store/modules/SecurityAndAccess/SessionsStore.js
+++ b/src/store/modules/SecurityAndAccess/SessionsStore.js
@@ -25,14 +25,10 @@
         )
         .then((sessionUris) => {
           const allConnectionsData = sessionUris.map((sessionUri) => {
-            //For filtering IP address to IPv4
-            let filteredIPAddress = sessionUri.data?.ClientOriginIPAddress.slice(
-              7
-            );
             return {
               clientID: sessionUri.data?.Oem?.OpenBMC.ClientID,
               username: sessionUri.data?.UserName,
-              ipAddress: filteredIPAddress,
+              ipAddress: sessionUri.data?.ClientOriginIPAddress,
               uri: sessionUri.data['@odata.id'],
             };
           });