Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
bombassaro committed Jan 2, 2021
1 parent d0aa5fa commit f98985f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5282,7 +5282,7 @@ var parseAlign = function parseAlign(theme, _ref) {
var fd = '';
var jc = ''; // check if is column

if (align.contains('column')) {
if (align.includes('column')) {
fd = align; // x axys

if (alignx === 'left') {
Expand Down Expand Up @@ -5328,7 +5328,7 @@ var parseAlign = function parseAlign(theme, _ref) {
} // check if is row


if (align.contains('row')) {
if (align.includes('row')) {
fd = align;

if (alignx === 'left') {
Expand Down

0 comments on commit f98985f

Please sign in to comment.