Gary Vaz

Results 5 comments of Gary Vaz

For me, removing `@nuxtjs/stylelint-module` from my nuxt config allowed my app to build.

@sdras it wasn't working for me even in incognito, as I mentioned in this comment that @nuxtjs/stylelint-module removal worked for me. > For me, removing `@nuxtjs/stylelint-module` from my nuxt config...

@sdras yeah, and another observation was that with the `create-nuxt-app` the `package.json` versions are weird, for eg, `nuxt` version will be `^2.0.0` while it will install the latest nuxt version....

You could try this in your views: ``` import requests from dal import autocomplete class YourAutComplete(autocomplete.Select2ListView): def get_list(self): try: items_response = requests.get( "https://whateverapi/items", params=dict(search=self.q) ) items_response.raise_for_status() items = items_response.json()["items"] items...

Another option is: admin config: ``` @admin.register(YourModel) class YourModelAdmin(admin.ModelAdmin): class Media: css = {"all": ("your-model.css",)} ``` your-model.css: ``` .select2-container--default + .select2-container--jet { display: none; } ``` and jet theme select2...