(value)
| 948 | } |
| 949 | |
| 950 | function formatDisplayFieldValue(value) { |
| 951 | if (value === null) return 'null'; |
| 952 | if (value === undefined) return ''; |
| 953 | if (typeof value === 'string') return value; |
| 954 | if (typeof value === 'number' || typeof value === 'boolean') return String(value); |
| 955 | return JSON.stringify(value); |
| 956 | } |
| 957 | |
| 958 | function setupJsonDetailEventDelegation() { |
| 959 | elements$6.detailJson.addEventListener('click', (e) => { |
no outgoing calls
no test coverage detected