-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icon missing next to group name on web app #5656
Labels
Comments
There is an SVG icon there in the DOM tree, but it isn't being rendered. The icon hasn't been changed at all recently, and we haven't done any work on h recently either. This might be a regression due to a dependency update. |
robertknight
added a commit
that referenced
this issue
Jul 17, 2019
By default svgo removes the `viewBox` attribute of the SVG, which breaks scaling of the SVG content when rendering. This caused various icons on the site to render at an incorrect scale. In some cases this was not very noticeable because the natural size of the content was close to the scaled size. In other cases the icon failed to appear at all. To see the difference, compare: ``` rm build/images/icons/* NODE_ENV=production gulp build-images cat build/images/icons/groups.svg ``` Before and after this patch is applied. Fixes #5656
robertknight
added a commit
that referenced
this issue
Jul 18, 2019
By default svgo removes the `viewBox` attribute of the SVG, which breaks scaling of the SVG content when rendering. This caused various icons on the site to render at an incorrect scale. In some cases this was not very noticeable because the natural size of the content was close to the scaled size. In other cases the icon failed to appear at all. To see the difference, compare: ``` rm build/images/icons/* NODE_ENV=production gulp build-images cat build/images/icons/groups.svg ``` Before and after this patch is applied. Fixes #5656
robertknight
added a commit
that referenced
this issue
Jul 22, 2019
By default svgo removes the `viewBox` attribute of the SVG, which breaks scaling of the SVG content when rendering. This caused various icons on the site to render at an incorrect scale. In some cases this was not very noticeable because the natural size of the content was close to the scaled size. In other cases the icon failed to appear at all. To see the difference, compare: ``` rm build/images/icons/* NODE_ENV=production gulp build-images cat build/images/icons/groups.svg ``` Before and after this patch is applied. Fixes #5656
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to reproduce
Expected behaviour
There should be an icon next to the group name
Actual behaviour
There is no icon, the interface shows "In Public" (for instance)
Browser/system information
Chrome
Additional details
The text was updated successfully, but these errors were encountered: