You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import {Component} from 'derby';
export class MyComp extends Component {
static readonly is = 'my-comp';
static readonly view = __dirname;
create() {
let $query = this.model.query('collection', {query:1});
$query.subscribe();
$query.ref('list'); // Now list will always empty array, but $query.get() contains items
let $query = this.model.root.query('collection', {query:1});
$query.subscribe();
this.model.ref('list', $query); // But root-variant works
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: