Skip to content

Commit c59018e

Browse files
author
Philipp Eichhorn
committed
fix: allow empty Formio.baseUrl
1 parent 38e8c92 commit c59018e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Formio.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default class Formio {
6060
if (options.hasOwnProperty('base')) {
6161
this.base = options.base;
6262
}
63-
else if (Formio.baseUrl) {
63+
else if (!isNil(Formio.baseUrl)) {
6464
this.base = Formio.baseUrl;
6565
}
6666
else {

0 commit comments

Comments
 (0)