Merge pull request #14286 from CartoDB/14266_override_image_tag_too

Fix bug for some images becuase we haven't override image_tag too
pull/14299/head
Javier Torres 6 years ago committed by GitHub
commit cd35a2549b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,7 @@ sudo make install
### Bug fixes / enhancements
- Fix legacy functions in the data mover that doesn't process multiword type functions
- Fix `image_tag` function to include the assets versioning (#14266)
- Fix broken tests due to time stubbing (#14287)
- Remove username from Postgres roles

@ -169,6 +169,10 @@ module ApplicationHelper
end
end
def image_tag(source, options={})
super "/#{frontend_version}/images/#{source}", options
end
def editor_image_path(source)
image_path(source, true)
end

Loading…
Cancel
Save