open5gs/webui/src/components/Account
Sukchan Lee 5a220f1a83 [WebUI] fixed a EDIT bug after 10 minutes (#2615)
After the page remains inactive for 10 minutes,
clicking on the edit page will result in a blank screen

when you click on edit after 10 minutes,
all user data is lost. After capturing the network packets,
it can be observed that the frontend sends a fresh request
to the backend for data, and the backend responds correctly,
but the page does not refresh correctly.

`function recent(fetchedAt) {
if (fetchedAt === null) return false;

const interval = 10 * 60 * 1000; // 10 minutes
return ((Date.now() - interval) < fetchedAt);
}`
2023-09-25 22:28:59 +09:00
..
Edit.js [WebUI] fixed a EDIT bug after 10 minutes (#2615) 2023-09-25 22:28:59 +09:00
Item.js account is done 2017-09-22 20:05:04 +09:00
List.js account is done 2017-09-22 20:05:04 +09:00
index.js add Initial Account DB and REST API 2017-09-22 09:57:52 +09:00