Commit b45e14d 1 parent 4663833 commit b45e14d Copy full SHA for b45e14d
File tree 3 files changed +3
-2
lines changed
desktop/renderer-app/src/pages/CloudStoragePage
web/flat-web/src/pages/CloudStoragePage
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ module.exports = {
26
26
"always" ,
27
27
[
28
28
"ci" ,
29
+ "cloud-storage" ,
29
30
"desktop" ,
30
31
"deployment" ,
31
32
"electron" ,
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ export class CloudStorageStore extends CloudStorageStoreBase {
309
309
310
310
this . isFetchingFiles = false ;
311
311
312
- this . hasMoreFile = cloudFiles . length === 0 ;
312
+ this . hasMoreFile = cloudFiles . length > 0 ;
313
313
314
314
for ( const cloudFile of cloudFiles ) {
315
315
const file = this . filesMap . get ( cloudFile . fileUUID ) ;
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export class CloudStorageStore extends CloudStorageStoreBase {
305
305
306
306
this . isFetchingFiles = false ;
307
307
308
- this . hasMoreFile = cloudFiles . length === 0 ;
308
+ this . hasMoreFile = cloudFiles . length > 0 ;
309
309
310
310
for ( const cloudFile of cloudFiles ) {
311
311
const file = this . filesMap . get ( cloudFile . fileUUID ) ;
You can’t perform that action at this time.
0 commit comments