Nielson Santana

Results 7 comments of Nielson Santana

Same situation here. I can't debug the cause of a component not work on staging environment but work on my local notebook.

In this issue there a pagination example: https://github.com/adamghill/django-unicorn/issues/244

@poiedk, you can prevent unserializable(`Page`,...) and sensitive objects be exposed to javascript by [using `javascript_exclude` to do it](https://www.django-unicorn.com/docs/advanced/#javascript-exclude).

I think that is needed use `javascript_exclude` when passing not serializables objects to unicorn. I had a similar problem. ```python from django_unicorn.components import UnicornView class CheckoutPaymentMethodView(UnicornView): length = '' class...

- Version of dokku you use: 0.4.12 - Non-core plugins you use (including internally developed ones): - dokku-apt - dokku-volume(I used, but using docker-options right now) - dokku-deploy-hooks(my fork) -...

I'm getting the same error. Zerotier provider version is **0.2.0** Terraform version is **v0.11.14** ```hcl variable "zerotier_token" = {} variable "zt_cidr" = { default = "10.144.0.0/16" } provider "zerotier" {...

I had the same problem, testing `terrascript - 0.9.0` with `terraform - 0.13.6`. Here my case. ```python import terrascript import terrascript.resource from terrascript import Output def ref(r): return '${' +...