open5gs/webui
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
..
pages Rename Project to Open5GS 2019-10-27 17:41:14 +09:00
server Squashed commit of the following: 2022-11-04 17:39:29 +09:00
src [WebUI] fixed a EDIT bug after 10 minutes (#2615) 2023-09-25 22:28:59 +09:00
static Sponsors logo updated to be dark-mode friendly 2022-09-20 11:15:19 +09:00
.babelrc update it 2017-06-09 14:22:26 +09:00
.gitignore Prepares an easy install script for mac builds and initializes gitignore 2019-11-25 11:27:19 -08:00
package-lock.json [WebUI] Fixed a crash when editing Subscribe 2023-08-23 23:30:58 +09:00
package.json [WebUI] Fixed a crash when editing Subscribe 2023-08-23 23:30:58 +09:00