Merge remote-tracking branch 'origin/1.9' into 1.9

This commit is contained in:
Matias Griese
2019-03-05 00:42:37 +02:00
2 changed files with 10 additions and 10 deletions

View File

@@ -243,7 +243,7 @@ export default class FilesField {
onDropzoneRemovedFile(file, ...extra) {
if (!file.accepted || file.rejected) { return; }
let url = file.removeUrl || this.urls.delete;
let url = file.removeUrl || this.urls.delete || this.options.url;
let path = (url || '').match(/path:(.*)\//);
let body = { filename: file.name, uri: this.getURI() };

File diff suppressed because one or more lines are too long