-
Notifications
You must be signed in to change notification settings - Fork 28
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
CSS and JavaScript got injected two times in every file #21
Comments
Not sure I follow, your style.css content is the same as the content you posted from injected file from webserver. Did you see each file injected twice in the returned HTML? Or two requests fetching each file? What env were you using? Any more detail you can provide would be useful |
The file itself (
But .lotusHeader .shareSome-desc .shareSome-title{
font-size:40px;
color:orange
}
.lotusHeader .shareSome-desc .shareSome-title{
font-size:40px;
color:orange
} This seems to be a bug somewhere in the customization-system, since the file uploaded by me is fine (no redundant content). To be more clear, I have the .lotusHeader .shareSome-desc .shareSome-title{
font-size:40px;
color:orange
} It got uploaded in .lotusHeader .shareSome-desc .shareSome-title{
font-size:40px;
color:orange
}.lotusHeader .shareSome-desc .shareSome-title{
font-size:40px;
color:orange
} We're having a pink testsystem with kubernetes. I'm mainly a C# developer and completely new on any IBM software, just got recently started on the pink stack. The connections about page say |
Ah. This issue has been fixed in the next release of the component pack. You would need to upgrade to it once it is released to pick up the fix |
Okay, do you have any information about the version and the estimated release date? |
It'll be included in v6.0.0.6 Component Pack. I'm not certain there is an exact release date announced, but it should be quite soon |
Using the hello world example I noticed that the content of each file is served two times. Doesn't seem to make any difference if we have js or css files.
Simple example: I create a file called
style.css
with the following content:When I access the injected file from the webserver, It has the following content:
That's not only a performance issue case it also applys to javascript, so that every code got executet two times.
The text was updated successfully, but these errors were encountered: