Skip to content

Commit

Permalink
V13: Dropzone, upload complete callback with processed file array (#1…
Browse files Browse the repository at this point in the history
…7631)

* Dropzone, upload complete callback with processed file array

* Media card: cosmetic fix for image border-radius

The image's square corners were poking out.
  • Loading branch information
leekelleher authored Nov 25, 2024
1 parent ba41200 commit 9141f61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ angular.module("umbraco.directives")
if (scope.totalMessages === 0) {
if (scope.filesUploaded) {
//queue is empty, trigger the done action
scope.filesUploaded(scope.done);
scope.filesUploaded(scope.processed);
}

//auto-clear the done queue after 3 secs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

> div {
overflow: hidden;
border-radius: @baseBorderRadius;
border-radius: 0 0 @baseBorderRadius @baseBorderRadius;
}

}
Expand Down Expand Up @@ -106,6 +106,7 @@
position: relative;
object-fit: contain;
height: 100%;
border-radius: @baseBorderRadius;
}

.umb-media-grid__item-image-placeholder {
Expand Down

0 comments on commit 9141f61

Please sign in to comment.