dnish

Results 30 comments of dnish

Hey, no, in my case the value is still available and not undefined. I've also the problem that when I query via the Mongo collection (without Astronomy): const Videos =...

Hey, thank you for the quick response. Adding an own method like findWithRelations was my first thought, but normally it is easier to load all relational data with the object,...

Had the same issue, I've used the same code from the sandbox, the Masonry component was working, when using useMasonry, all items were overlapping. After a while I've checked the...

Even if I add an own Title component and try to set the props via this.props.setTitleProps, nothing changes.

Yeah, I am using an own title component. This works without problems :)

Yeah, I'll post tomorrow the code here. In my case I am using a ScrollView slider and change the title if I've slided to the next component.

Here's my answer: index.js ``` ``` title.js ``` export class Title extends React.Component { constructor(props) { super(props); } render() { return ({this.props.name}); } } ``` dashboard.js ``` export class Dashboard...

Hey @Grubba27, yeah, we use the standard way for SSR. On our main.js we got this: ``` import {onPageLoad} from "meteor/server-render"; import { renderToString } from "react-dom/server"; onPageLoad(sink => {...

@pmwisdom I think we have to set both icons manually. I've used another Cordova plugin before, and there I've to set "smallIcon" and "icon" to use both (smallicon for notification...