#5139 Fix the logo flickering issue
Issue: There is some weird behavior with v-img tag while display the header logo. The logo is flickering whenever we are clicking on different file on the side navigation.
Solution: I have replaced "v-img" tag with "img" tag, The issue is fixed by this simple change. Additionally i have added the CSS class as "class" attribute to the img tag.
Please associate this PR with issue #5140
This is the not proper way to "fix" it. v-img is not the problem, the default transition is. Also, the classes are meant to be where they were before, not in a class attribute, unless they are dynamically generated.
v-img.org-logo(:src='logoUrl', :transition='false')
v-img.org-logo(:src='logoUrl', :transition='false')
I am trying with transition='false' as suggested by you but it's not working. Logo is still flickering. Any suggestion...