Jules Robichaud-Gagnon
Jules Robichaud-Gagnon
I confirm your fix works. Until this is merged, you can load a dummy loading bar instead: ```javascript cfpLoadingBarProvider.includeBar = true; cfpLoadingBarProvider.loadingBarTemplate = ""; ``` The spinner starts to work.
I think it relates to issue #33 and the new test introduced by #35.
Depending of MySQL or SQLite it will fail on different fields. The issue **does not** happen when **not** using iterators( see "Workarounds" 2 and 3)
@echo-branch in the meantime I am going to use the javascript workaround. The second option was more of a POC.
> > # Workarounds > > ## Patch it in the javascript > > ```js > > branch.subscribe({ > > onOpenComplete: (res) => { > > const {params, error} =...
I confirm `fetchCompletionHandler`is not called: ```objective-c [RNCPushNotificationIOS didReceiveRemoteNotification:userInfo fetchCompletionHandler:^(UIBackgroundFetchResult result){ // Never called }]; ``` along with this code: ```javascript PushNotificationIOS.addEventListener('notification', (notification) => { notification.finish(PushNotificationIOS.FetchResult.NoData); }); ```
Since the beginning of the project I had this in mind: 1. keep the compatibility until there are breaking changes (Ex: threadlocal vs contextvars) or the maintainability is unbearable (Ex:...
I assumed it would work inside `dal-init-function` but its not: ```javascript document.addEventListener('dal-init-function', function () { yl.registerForwardHandler("your_function", function (autocompleteElement) { your code... }); }); ``` Wrapping it like @WordDragon suggested worked....
Wrapping it [this way](https://github.com/yourlabs/django-autocomplete-light/issues/1214#issuecomment-1416318856) was not as reliable as I thought. It was working fine in Firefox but not in Chrome strangely. However wrapping it this way instead is giving...
I noticed you install `django-admin-rangefilter`. `rangefilter` could override unfold's template. Are you using both at the same time?