Do not show [object Object] (#2636)

This commit is contained in:
Abdo 2023-09-04 04:17:42 +03:00 committed by GitHub
parent d3d67c2083
commit c45f3cb0af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
let label: string = "";
function onUpdate(progress: Progress) {
if (progress.value.value && label !== progress.value.value) {
if (
progress.value.value &&
progress.value.case !== "none" &&
label !== progress.value.value.toString()
) {
label = progress.value.value.toString();
}
}