-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
UI - new token renew banner #5662
Conversation
@@ -56,7 +56,7 @@ module('Integration | Component | license info', function(hooks) { | |||
await render( | |||
hbs`<LicenseInfo @licenseId={{this.licenseId}} @expirationTime={{this.expirationTime}} @startTime={{this.startTime}} @features={{this.features}}/>` | |||
); | |||
assert.equal(component.featureRows.length, 12, 'it renders 12 features'); | |||
assert.equal(component.featureRows.length, 9, 'it renders 9 features'); |
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.
we could just have this call the helper and make sure it's the same length as the list the helper has?
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.
Oh yeah that's nicer
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.
done!
58d3984
to
c26e4fd
Compare
1084900
to
6b851fa
Compare
This PR changes how the UI notifies you about suspended auto-renewal of your Vault token.
Previously there was a big yellow banner telling you that you needed to click a button to resume auto-renewal if you were idle for a period of time in the UI. Now, we've shuffled that alert into the user menu, so all that you see is a yellow dot on the user icon, and if you navigate anywhere that triggers an api call, we'll resume renewal for you automatically.
Just the beacon:
With the user menu open:
Note: styling on this will change as all of the alert styling is currently being worked on.
Fixes #4840