Łukasz Jagodziński
Łukasz Jagodziński
Fixed in `jagi:[email protected]`
Hehe ehh that's what happens when you release bugfix quickly without testing it :P. Right, sorry I will fix that
@s7dhansh sorry but in this case changing this behavior would require me to rewrite a lot of diffing algorithm and it can't be easily implemented. I will revert to the...
@s7dhansh from what I remember using `getModifier` should work but it's kinda ugly hack. The best way to solve this problem would be to modify diffing algorithm to include nested...
Hmm that's because Astronomy is overriding the type property in selector. Probably I shouldn't do that if developer already provided the type property. Of course you will lose ability to...
Ok it's fixed in version 2.4.3
Currently index is not created but you can easily create index by yourself. However, text indexes is not much useful for the `type` property as you're mostly searching for whole...
It's a feature, you shouldn't invoke operation if it's not needed. So if there are no modifications then operation won't be executed. Btw. I see some bugs in your example...
For example you're importing `Team` instead `Teams` collection: ```js import {Team} from '../Teams'; ``` Later you create class `Teams` instead of `Team`: ```js const Teams = Class.create({ name: 'Team', collection:...
Hey, by definition it would just break inheritance model. In classical inheritance model a child always inherits all the parent's properties. If you need that feature, it probably means that...