simondrabble
simondrabble
This would be a useful feature.
Over a year since this ticket was opened and no response from the devs. This is how software dies.
This seems like a super useful feature. Just started using gitchangelog about ten minutes ago and have already run into this issue.
Hi @vaab , thanks for your prompt and well-thought out response. I had indeed been using gitchangelog to generate changelogs that were themselves checked in to git. However, I think...
Looks like a duplicate of #510. You can see my fork here https://github.com/simondrabble/connexion for a fix.
You can pass auth_user and auth_password to send_mail, so just determine what those should be and pass them in: ``` if some_condition(): auth_user = 'user1' auth_pass = 'pass1' else: auth_user...
Well.. maybe, but the whole point of javascript solutions is enhanced functionality, so I would expect to be able to check for and prevent an undesirable situation. Otherwise, sure, I...
@1cg do you have an example of such? Not super familiar with filter expressions in HTMX.
I was able to fix this with the following: `...` then in mounted: ` setTimeout(() => { this.$refs['my-carousel'].$el.style.height = 'auto'; }, 50); ` It's a little hacky but it works.
I've been able to work around this for now with the following: ``` var watcher = $scope.$watch('search.query', function(nv, ov) { $scope.search.entered = nv; }); $scope.onSelect = function($item, $model, $label, $event)...