Naprawienie checklisty

This commit is contained in:
Maciej Chmielarz 2024-01-20 00:59:24 +01:00
parent db214d217e
commit 9b7136b1af
3 changed files with 8 additions and 8 deletions

View File

@ -7,15 +7,15 @@ const Hero = () => {
const [gameMinute, setGameMinute] = useState('');
const [firstShot, setfirstShot] = useState('');
const [oneOnOne, SetoneOnOne] = useState('');
const [afterAirDuel, SetafterAirDuele] = useState('');
const [openGoal, SetOpenGoal] = useState('');
const [afterDribbling, SetafterDribbling] = useState('');
const [redirect, SetRedirect] = useState('');
const [firstShot, setfirstShot] = useState(0);
const [oneOnOne, SetoneOnOne] = useState(0);
const [afterAirDuel, SetafterAirDuele] = useState(0);
const [openGoal, SetOpenGoal] = useState(0);
const [afterDribbling, SetafterDribbling] = useState(0);
const [redirect, SetRedirect] = useState(0);
const handleMinuteChange = (e) => { setGameMinute(e.target.value);
sentQuestion()
sentQuestion();
}
const handleFirstShotChange = (event) => {

View File

@ -34,7 +34,7 @@ def get_model():
gameMinute = request.args.get('gameMinute')
shot_first_time = request.args.get('shot_first_time')
shot_one_on_one = request.args.get('shot_one_one')
shot_one_on_one = request.args.get('shot_one_on_one')
shot_aerial_won = request.args.get('shot_aerial_won')
shot_open_goal = request.args.get('shot_open_goal')
shot_follows_dribble = request.args.get('shot_follows_dribble')