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

Commit 9965c1e

Browse files
author
Illia Obukhau
authored
Merge pull request #1643 from mendix/fix/WC-1305_base64_actions_throw_error
[WC-1305]: Fix module import in Base64 js actions
2 parents 6becaaf + 6aaca7c commit 9965c1e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Diff for: packages/jsActions/nanoflow-actions-native/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed issue with Base64 actions throwing error
12+
913
## [2.6.0] Nanoflow Commons - 2022-8-31
1014

1115
### Breaking

Diff for: packages/jsActions/nanoflow-actions-native/src/other/Base64Decode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// - the code between BEGIN USER CODE and END USER CODE
66
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
77
// Other code you write will be lost the next time you deploy the project.
8-
import Base64 from "js-base64";
8+
import { Base64 } from "js-base64";
99

1010
/**
1111
* @param {string} base64

Diff for: packages/jsActions/nanoflow-actions-native/src/other/Base64DecodeToImage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// - the code between BEGIN USER CODE and END USER CODE
66
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
77
// Other code you write will be lost the next time you deploy the project.
8-
import Base64 from "js-base64";
8+
import { Base64 } from "js-base64";
99

1010
// BEGIN EXTRA CODE
1111
// END EXTRA CODE

Diff for: packages/jsActions/nanoflow-actions-native/src/other/Base64Encode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// - the code between BEGIN USER CODE and END USER CODE
66
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
77
// Other code you write will be lost the next time you deploy the project.
8-
import Base64 from "js-base64";
8+
import { Base64 } from "js-base64";
99

1010
/**
1111
* @param {string} string

0 commit comments

Comments
 (0)