You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unnecessary label and value JSON structure visible in Email and Contact columns of exported file.
Issue Description
When exporting contacts from Krayin CRM, the Email and Contact Number columns contain raw JSON-like data such as {"value":"1234567890","label":"work"} instead of clean text values. This makes the exported data hard to read and use in spreadsheets or reports.
1. Go to Contacts > Persons.
2. Click the export button to download the contact list (.xls file).
3. Open the file and check the Email and Contact Number columns.
Expected result
The Email and Contact Number fields should contain only plain values:
1234567890
user@example.com
Actual result
The exported file shows raw object data in Email and Contact columns:
{"value":"1234567890","label":"work"}
{"value":"user@example.com","label":"work"}
This makes the file less user-friendly and more difficult to work with.
Suggested Fix
Update the export logic to extract and display only the value part for Email and Contact fields.
Optionally, provide a separate column if label info is needed — but don't embed it in one field.
Attaching exported file -
Bug report
Title
Unnecessary
label
andvalue
JSON structure visible in Email and Contact columns of exported file.Issue Description
When exporting contacts from Krayin CRM, the Email and Contact Number columns contain raw JSON-like data such as
{"value":"1234567890","label":"work"}
instead of clean text values. This makes the exported data hard to read and use in spreadsheets or reports.Preconditions
Steps to reproduce
Expected result
1234567890
user@example.com
Actual result
{"value":"1234567890","label":"work"}
{"value":"user@example.com","label":"work"}
This makes the file less user-friendly and more difficult to work with.
Suggested Fix
value
part for Email and Contact fields.Attaching exported file -
uwtvk.xls
The text was updated successfully, but these errors were encountered: