-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
changed random string in prod to start with a letter #30
Conversation
@@ -66,7 +66,7 @@ export default function style( | |||
// Aesthetic's caching layer. | |||
} else { | |||
instanceID += 1; | |||
styleName = `${Math.random().toString(32).substr(2)}${instanceID}`; | |||
styleName = `c${Math.random().toString(32).substr(2)}${instanceID}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CSS cant start with a number, so added a 'c' to the start of this string
Awesome thank you! |
Whats the deal with releasing/tagging new version with this ? a project im working on cant be upgraded till this is released and id like to upgrade it if possible |
I'm at work but I can tag a new version later tonight. |
Thank you, appreciate it! |
@DesignAlchemy Releases tagged. |
Awesome! I'm surprised it hasn't come up earlier :P |
No description provided.