Michael Qin

Results 35 comments of Michael Qin

The reason there's a lot of conflict is that including the stylsheet from md-data-table has hardcoded css color values, but not including it means we don't get any of the...

Im not sure what's going on without more details on the structure of your project. This looks like more a problem of ts and import logic than ignite though

I've read certain solutions not specific to RN that suggest we replace the native Promise library with bluebird by do something like `__dev__ ? global.Promise = require("bluebird") : global.promise` although...

@giuseppeTrovato20 can you check if adding this to your podfile will work? I recently came across this because I blindly copied the patch diff from 0.64 to 0.66 and it...

If your question is how to do full text search, then it doesn't have anything to do with this project. Maybe you're looking at how to do a `LIKE` search...

shouldn't you be able to run a custom query using the supported sqlite commands? https://stackoverflow.com/questions/418898/sqlite-upsert-not-insert-or-replace

are you not "cascading" the deletion on your backend to the product table by setting deleted_at on all products associated with that brand?

Good solution w/ custom Css, but still... it should either render the new line, or show the \n character. The current behavior is too weird What do you think @mac-s-g

it says it right there, you need the right version of `gcc`. See https://github.com/glample/fastBPE/issues/45 maybe it can help you get it

so looks like the culprit is inside the default json parser in json-parser.js. There's a flattening function that destroys the data inside the UserDeliveryPreferences array.