Fixed bug in XosFormHelpers._getFieldFormat and correctly parsing data in xosSmartTable

Change-Id: Iee9875d7bcbdac2bf2b716244f0dd16de5fbfc99
diff --git a/spec/services/helpers/form.helpers.test.js b/spec/services/helpers/form.helpers.test.js
index a126db5..308d503 100644
--- a/spec/services/helpers/form.helpers.test.js
+++ b/spec/services/helpers/form.helpers.test.js
@@ -116,6 +116,7 @@
 
       describe('the _getFieldFormat method', () => {
         it('should return text', () => {
+          expect(service._getFieldFormat('cordSubscriber-1')).toEqual('text');
           expect(service._getFieldFormat('a random text')).toEqual('text');
           expect(service._getFieldFormat(null)).toEqual('text');
           expect(service._getFieldFormat('1')).toEqual('text');