Presence of `cls` adds `i-bem` for node with `bem: false`
Closed this issue · 1 comments
tadatuta commented
Input code or something about issue background
// BEMJSON
([
{ block: 'b1', cls: 'anything' },
{ block: 'b1' }
]);
// templates
block('b1')(
bem()(false),
js()(true)
);
Expected Behavior
<div class="anything"></div>
<div></div>
Actual Behavior
<div class="anything i-bem"></div>
<div></div>
miripiruni commented
+bem-xjst@8.8.6