Skip to content

Commit

Permalink
Allow box-orient to be vendor prefixed
Browse files Browse the repository at this point in the history
Making `stylelint` happy, since this property is needed for `line-clamp`.

And adding a missing semicolon to make `eslint` also happy.
  • Loading branch information
comzeradd committed Jun 29, 2022
1 parent e36b685 commit 00b6241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@
"no-invalid-double-slash-comments": true,
"no-missing-end-of-source-newline": true,
"max-empty-lines": 1,
"property-no-vendor-prefix": true
"property-no-vendor-prefix": [true, {"ignoreProperties": ["box-orient"]}]
}
}
2 changes: 1 addition & 1 deletion assets/src/js/menu_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const menuEditorRestrictions = () => {
</style>`;

menuEditorFooter.insertBefore(container, menuEditorFooter.querySelector('div'));
}
};

/**
* Toggle rules linked to location selected
Expand Down

0 comments on commit 00b6241

Please sign in to comment.