pollination-react-io 1.78.1 → 1.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js
CHANGED
@@ -56209,7 +56209,7 @@ var FileCard = function (_a) {
|
|
56209
56209
|
// Generate Blob on click
|
56210
56210
|
run && downloadArtifact(path, run.status.job_id)
|
56211
56211
|
.then(function (url) { return fetchAndSet(url); })
|
56212
|
-
.catch(function () { return onClicked({ label: label, path: path, file: undefined, description: description }); });
|
56212
|
+
.catch(function () { return onClicked({ label: label, path: path, file: undefined, description: description, name: filename }); });
|
56213
56213
|
}
|
56214
56214
|
else {
|
56215
56215
|
// Some inputs has path == null
|
@@ -56230,7 +56230,7 @@ var FileCard = function (_a) {
|
|
56230
56230
|
event.stopPropagation();
|
56231
56231
|
if (isInactive)
|
56232
56232
|
return;
|
56233
|
-
onClicked({ label: label, path: path, file: currFile, description: description });
|
56233
|
+
onClicked({ label: label, path: path, file: currFile, description: description, name: filename });
|
56234
56234
|
} },
|
56235
56235
|
React__default["default"].createElement("div", { className: 'title-param' },
|
56236
56236
|
React__default["default"].createElement("div", { style: { float: 'left', margin: '0 8px 0 0' } }, !isLoading ? React__default["default"].createElement("div", { title: !isInactive
|