Resovle POST code logs missing page message

Fixed a typo in the router that resulted in the POST code logs page
request returning a 404 message. This was a typo in the router.js
file only. The IBM router.js file did not have this issue and the Intel
has not added this UI to their build.

Signed-off-by: Derick Montague <derick.montague@ibm.com>
Change-Id: Icce5d756ad1ce409c77ff67fd63a7759e5f24981
diff --git a/src/router/routes.js b/src/router/routes.js
index b01b0da..7501073 100644
--- a/src/router/routes.js
+++ b/src/router/routes.js
@@ -120,8 +120,8 @@
         },
       },
       {
-        path: '/health/post-codes-logs',
-        name: 'post-codes-logs',
+        path: '/health/post-code-logs',
+        name: 'post-code-logs',
         component: PostCodeLogs,
         meta: {
           title: i18n.t('appPageTitle.postCodeLogs'),