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

Commit

Permalink
Merge pull request #1643 from mendix/fix/WC-1305_base64_actions_throw…
Browse files Browse the repository at this point in the history
…_error

[WC-1305]: Fix module import in Base64 js actions
  • Loading branch information
Illia Obukhau authored Sep 23, 2022
2 parents 6becaaf + 6aaca7c commit 9965c1e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/jsActions/nanoflow-actions-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed

- We fixed issue with Base64 actions throwing error

## [2.6.0] Nanoflow Commons - 2022-8-31

### Breaking
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// - the code between BEGIN USER CODE and END USER CODE
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
// Other code you write will be lost the next time you deploy the project.
import Base64 from "js-base64";
import { Base64 } from "js-base64";

/**
* @param {string} base64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// - the code between BEGIN USER CODE and END USER CODE
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
// Other code you write will be lost the next time you deploy the project.
import Base64 from "js-base64";
import { Base64 } from "js-base64";

// BEGIN EXTRA CODE
// END EXTRA CODE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// - the code between BEGIN USER CODE and END USER CODE
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
// Other code you write will be lost the next time you deploy the project.
import Base64 from "js-base64";
import { Base64 } from "js-base64";

/**
* @param {string} string
Expand Down

0 comments on commit 9965c1e

Please sign in to comment.