Skip to content

Commit

Permalink
🐛 Fixing up the directives defined for the SetMartX and SetMartY methods
Browse files Browse the repository at this point in the history
  • Loading branch information
dapize committed Jul 6, 2022
1 parent 190bc35 commit d831317
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dist/layouter.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/layouter.es.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/layouter.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/layouter.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "layouter.js",
"version": "1.9.0",
"version": "1.9.1",
"description": "Layout builder without CSS, What???!!!",
"homepage": "https://layouter.io",
"main": "dist/layouter.umd.js",
Expand Down
2 changes: 1 addition & 1 deletion src/methods/setMarX.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const setMarX = (
): Promise<void | Error> => {
return setterXY({
Node,
directives: ['marx', 'px', 'margin-x'],
directives: ['marx', 'mx', 'margin-x'],
builder: buildMarX,
vals,
});
Expand Down
2 changes: 1 addition & 1 deletion src/methods/setMarY.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const setMarY = (
): Promise<void | Error> => {
return setterXY({
Node,
directives: ['mary', 'py', 'margin-y'],
directives: ['mary', 'my', 'margin-y'],
builder: buildMarY,
vals,
});
Expand Down

0 comments on commit d831317

Please sign in to comment.