Dale Zak

Results 28 comments of Dale Zak

Thanks for sharing this @viking2917, I meant to reply when you posted this but forgot. What's strange is that Colcade always worked fine with Vue 2 but started putting things...

As potential workaround for this bug, is there another way to define these abilities? It's a pretty complicated expensive query, so something simpler would be a lot faster. Any ideas?

@coorasse maybe it could use [succ](https://apidock.com/ruby/String/succ) instead of concatting `_#{index += 1}`? Perhaps something like this? ``` index = 1 while alredy_used?(table_alias, relation_name, path_to_key) table_alias = "#{table_alias}_#{index += 1}".to_sym end...

@coorasse I tested the [proposed fix](https://github.com/CanCanCommunity/cancancan/issues/696#issuecomment-798923521) and it does fix the alias name, however still getting `missing FROM-clause entry for table` error. ``` PG::UndefinedTable: ERROR: missing FROM-clause entry for table...

I'm having the same issue for Ruby `3.1.0`, `3.1.1`, and `3.1.2` on macOS 12.4, after upgrading a Heroku instance to `heroku-22` which requires Ruby `3.1`.

_Woot_, I finally got it working thanks to [this post](https://stackoverflow.com/a/36896085/385730), hopefully this helps others with the same problem. ``` brew uninstall --force openssl brew install openssl brew link --overwrite openssl...

Any update on this issue? warning: casting 'volatile MySingleton *' to type 'MySingleton *' discards qualifiers [-Wincompatible-pointer-types]

@mberneis is it required to downgrade `chart.js` to `2`? The latest version is `3.4.1` so that's [quite old](https://www.npmjs.com/package/chart.js?activeTab=versions). Curious, since things were working fine and stopped, could this issue be...

In case it helps others, I upgraded to Vue `3.1.4` which was published 2 days ago, and this error went away for me.

I'm trying to connect my `vue-mc` models to Firestore for `fetch` and `save` as well, are there any examples for this?