Browse Source

Merge branch 'master' into fx_bug_DateString_WithoutTz

pull/9778/head
nick 3 years ago
parent
commit
a41d3ace0e
  1. 4
      ui-ngx/src/app/shared/components/image/image-gallery.component.ts

4
ui-ngx/src/app/shared/components/image/image-gallery.component.ts

@ -612,7 +612,9 @@ export class ImageGalleryComponent extends PageComponent implements OnInit, OnDe
if (this.selectionMode) {
this.selectImage($event, image);
} else {
this.dataSource.selection.toggle(image);
if (this.deleteEnabled(image)) {
this.dataSource.selection.toggle(image);
}
}
}

Loading…
Cancel
Save