kytos-ng / ui

Kytos Admin UI
MIT License
0 stars 3 forks source link

hotfix into 2024.1 - fixed enter key handler on k-input-auto #98

Closed italovalcy closed 1 month ago

italovalcy commented 1 month ago

Closes #92

Summary

See updated changelog file.

Local Tests

Same as described on https://github.com/kytos-ng/ui/pull/91 to run the tests:

git clone https://github.com/kytos-ng/ui kytos-ui
cd kytos-ui
docker run -d --name kytos-ui -v $(PWD):/kytos-ui -w /kytos-ui node:lts-alpine tail -f /dev/null
docker exec -it kytos-ui sh
apk add zip
## if you running this multi time, you may want to have a clean start: rm -rf latest.zip dist package-lock.json node_modules/
npm install
npm run build
## you can also run this to have a running code in debug mode (to help dev): npm run preprod && zip -r latest.zip index.html dist
exit

# copy the latest.zip file into Kytos installation
mv /usr/local/lib/python3.11/dist-packages/kytos/web-ui /usr/local/lib/python3.11/dist-packages/kytos/web-ui-$(date +%Y%m%d%H%M)
python3 -m zipfile -e latest.zip /usr/local/lib/python3.11/dist-packages/kytos/web-ui

Oct-07-2024 15-22-00

End-to-End Tests

N/A