hyperstack-org / hyperstack-org/hyperstack
default for boolean dummy values not working
Abierto
bug
good first issue
- Lenguaje dominante
- JavaScript
- Estrellas
- 538
- Forks
- 41
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
for booleans, the following default values in the schema should be recognized as true, anything else is false:
`'1'`, `true` or `1`
i.e. in ReactiveRecord::Base::DummyValue
```ruby
def build_default_value_for_boolean
@column_hash[:default] == '1' || @column_hash[:default] == true || @column_hash[:default] == 1
end
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.