()
| 419 | const displayOriginal = typeof originalValue === 'string' ? originalValue.replace(/^["']|["']$/g, '') : originalValue; |
| 420 | |
| 421 | const handleBoolToggle = () => { |
| 422 | const current = displayValue === 'True' || displayValue === 'true'; |
| 423 | onChange(current ? 'False' : 'True'); |
| 424 | }; |
| 425 | |
| 426 | return ( |
| 427 | <div className={`config-field ${isEdited ? 'edited' : ''} ${isNew ? 'new-var' : ''}`}> |
nothing calls this directly
no outgoing calls
no test coverage detected