We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c38db commit a4b25b5Copy full SHA for a4b25b5
frontend/src/app/components/ui-components/row-fields/boolean/boolean.component.ts
@@ -46,10 +46,6 @@ export class BooleanComponent implements OnInit {
46
onBooleanChange() {
47
let formattedBoolean = this.value;
48
49
- if ((this.structure && this.structure.data_type === 'tinyint' && (this.structure.character_maximum_length === 1)) || this.connectionType === 'mysql') {
50
- formattedBoolean = this.value ? 1 : 0;
51
- }
52
-
53
this.onFieldChange.emit(formattedBoolean);
54
}
55
0 commit comments