Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ynssenem committed Apr 23, 2021
1 parent 6cb639a commit 273381c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions app/components/cloudinary-finder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const CloudinaryFinder = {
const ref = this;
this.cloudinary = cloudinary.openMediaLibrary(
{
cloud_name: "dwmejslx5",
api_key: "989486627184147",
cloud_name: this.packageConfig.cloud_name,
api_key: this.packageConfig.api_key,
remove_header: true,
multiple: false,
max_files: 8,
Expand All @@ -43,7 +43,6 @@ const CloudinaryFinder = {
{
insertHandler: function (data) {
data.assets.forEach((asset) => {
console.log(asset);
if (_.hasIn(asset, "derived")) {
ref.setImage(asset.derived[0].secure_url);
return;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "greencheap/cloudinary",
"type": "greencheap-extension",
"version": "1.0.0",
"version": "1.0.1",
"title": "Cloudinary",
"description": "It is a plugin that allows you to draw images from Cloudinary site.",
"license": "MIT",
Expand Down

0 comments on commit 273381c

Please sign in to comment.