feat: implement upload speed calculation and ETA estimation (#2677)

This commit is contained in:
M A E R Y O
2023-09-15 07:41:36 +09:00
committed by GitHub
parent 36af01daa6
commit ecdd684bf1
5 changed files with 138 additions and 19 deletions

View File

@@ -49,6 +49,8 @@ const getters = {
currentPromptName: (_, getters) => {
return getters.currentPrompt?.prompt;
},
uploadSpeed: (state) => state.upload.speedMbyte,
eta: (state) => state.upload.eta,
};
export default getters;