add media detail dialog and infinite loading

This commit is contained in:
dswbx
2025-03-27 09:23:14 +01:00
parent 0424c08a9e
commit f6a511d998
17 changed files with 419 additions and 50 deletions

View File

@@ -331,4 +331,15 @@ export class FetchPromise<T = ApiResponse<any>> implements Promise<T> {
Boolean,
);
}
toString() {
return this.key({ search: true });
}
toJSON() {
return {
url: this.request.url,
method: this.request.method,
};
}
}