Fix for incorrect table radio button values

This commit is contained in:
navaneeth 2021-08-20 17:38:10 +05:30
parent f07e87ad48
commit 501b8a8cf5

View file

@ -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">