open5gs/webui/src
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
..
components [WebUI] fixed a EDIT bug after 10 minutes (#2615) 2023-09-25 22:28:59 +09:00
containers misc: Add MSISDN duplicate check in WebUI 2021-04-07 22:45:37 +09:00
helpers webui: Follow-up on Pull Request #838 2021-03-12 09:20:58 +09:00
modules Add API tokens (#838) 2021-03-12 09:13:38 +09:00