Fernando Valverde
Fernando Valverde
That's great to hear @rafalcymerys, thank you for clarifying!
The PoC has a compiler warning that may be troublesome for anyone using the Framework because it seems to indicate we're subclassing an interface to a private API: ```swift Property...
Hey @larson-carter thanks for chiming in! > Could you possibly "hold" then release the state of the WebKitView? Doing so would logically clear the WebView's history. This _could_ be handled...
> In this case what would the consumers be? Terminology here is confusing because of all the moving parts, let me try to clarify what I meant: - `ForemWebView` is...
Hi everyone. I wanted to share some ideas/context on this problem: - I _think_ the logo gets fetched [here](https://github.com/forem/forem-browser-extension/blob/main/content/content.js#L245) (from Forem instance's meta tags [here](https://github.com/fdoxyz/forem/blob/master/app/views/layouts/application.html.erb#L42-L44)) - Every instance exposes this...
Thank you for the report @yheuhtozr. We do indeed link to that cheatsheet within the editor but we don't currently support that feature for tables. We do however use the...
After some investigation it seems to me like the problem isn't the way we delete drafts, but instead that all autosave changes are kept despite saving as draft, or even...
Thank you @neerajkrbansal1996, I assigned the issue to you. Let us know if you need any help with this
Sure, this is one example that raises the error on the current `3.10.0` version: ```ruby # Initial setup client = Contentful::Management::Client.new(ENV["CONTENTFUL_TOKEN"], dynamic_entries: { ENV["CONTENTFUL_SPACE"] => "staging" }) environment = client.environments(ENV["CONTENTFUL_SPACE"]).find("staging")...
That makes sense @rubydog. I didn't think that through since it fixed the `NoMethodError` on `nil` for me. I replaced it with: ```ruby properties_info = properties.nil? || properties.empty? ? ''...