diff --git a/frontend/src/Editor/Components/Table/Radio.jsx b/frontend/src/Editor/Components/Table/Radio.jsx index b6b704d83b..5e4b5c5a93 100644 --- a/frontend/src/Editor/Components/Table/Radio.jsx +++ b/frontend/src/Editor/Components/Table/Radio.jsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; export const Radio = ({ options, value, onChange, readOnly }) => { - value = value || []; + value = value === undefined ? [] : value; return (