mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix for incorrect table radio button values
This commit is contained in:
parent
f07e87ad48
commit
501b8a8cf5
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ import React, { useState } from 'react';
|
|||
|
||||
export const Radio = ({ options, value, onChange, readOnly }) => {
|
||||
|
||||
value = value || [];
|
||||
value = value === undefined ? [] : value;
|
||||
|
||||
return (
|
||||
<div className="radio row">
|
||||
|
|
|
|||
Loading…
Reference in a new issue