test shell script

This commit is contained in:
joseph le 2023-09-22 16:16:50 +07:00
parent 0987499388
commit 168e2bd4e0
2 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,6 @@ export async function runtimeCheckLogs(folderPath) {
}
);
//setMaxListeners
scan.setMaxListeners(0);
});
}

View File

@ -89,6 +89,7 @@ const ManageValues = () => {
<input placeholder="value" style={{margin:"0 5px", width:"50%"}} onChange={(e)=>{
setAddValue({...addValue, value: e.target.value})
}}></input>
<button style={{cursor:"pointer", backgroundColor:"green", color:"white"}} onClick={async()=>{
if(addValue.key !=="" && addValue.value!==""){
const res = await axios.post(addKeyValue,{key: addValue.key, value: addValue.value})