Skip to content

Commit

Permalink
Merge branch 'release-14.19.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 7, 2023
2 parents e5e83da + b696a3d commit e5bf1b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
7 changes: 3 additions & 4 deletions views/js/controller/Publish/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@
*/
define([
'jquery',
'lodash',
'i18n',
'util/url',
'layout/actions',
'provider/resources',
'ui/destination/selector',
'ui/feedback',
'ui/taskQueue/taskQueue'
], function ($, _, __, urlHelper, actionManager, resourceProviderFactory, destinationSelectorFactory, feedback, taskQueue) {
], function ($, __, urlHelper, actionManager, resourceProviderFactory, destinationSelectorFactory, feedback, taskQueue) {
'use strict';

/**
Expand Down Expand Up @@ -77,7 +76,7 @@ define([
.on('finished', function (result, button) {
if (result.task
&& result.task.report
&& _.isArray(result.task.report.children)
&& Array.isArray(result.task.report.children)
&& result.task.report.children.length
&& result.task.report.children[0]) {
if (result.task.report.children[0].data
Expand All @@ -102,4 +101,4 @@ define([
});
}
};
});
});
2 changes: 1 addition & 1 deletion views/js/loader/taoDeliveryRdf.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion views/js/loader/taoDeliveryRdf.min.js.map

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions views/js/util/forms/deliveryFormHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@
*/
define([
'jquery',
'lodash',
'i18n',
'ui/filter',
'ui/feedback',
'layout/actions',
'ui/taskQueue/taskQueue',
'ui/taskQueueButton/standardButton'
], function ($, _, __, filterFactory, feedback, actionManager, taskQueue, taskCreationButtonFactory) {
], function ($, __, filterFactory, feedback, actionManager, taskQueue, taskCreationButtonFactory) {
'use strict';

/**
Expand Down Expand Up @@ -123,7 +122,7 @@ define([
if (result
&& result.task
&& result.task.report
&& _.isArray(result.task.report.children)
&& Array.isArray(result.task.report.children)
&& result.task.report.children.length
&& result.task.report.children[0]) {
if(result.task.report.children[0].data
Expand Down

0 comments on commit e5bf1b6

Please sign in to comment.