Merge branch 'group_property_feature' of https://github.com/vladfreeze/jupyterhub into group_property_feature

This commit is contained in:
vpopescu
2022-09-22 15:23:48 +02:00

View File

@@ -11,9 +11,11 @@ const DynamicTable = (props) => {
if (current_propobject) {
var [propkeys, setOwnKeys] = useState(Object.keys(current_propobject));
var [propvalues, setOwnValues] = useState(Object.values(current_propobject));
};
var [propvalues, setOwnValues] = useState(
Object.values(current_propobject)
);
}
var updateMessageKey = (event) => {
setMessage(event.target.value);
};