mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Some minor tweaks
This commit is contained in:
parent
3b8a73231e
commit
6a653050ba
@ -71,8 +71,6 @@ class Toast extends Component {
|
||||
|
||||
// Fade the notification in
|
||||
setTimeout(() => this.setState({visible: true}), 1000);
|
||||
|
||||
trackEvent('Notification', 'Shown', notification.key, {nonInteraction: true});
|
||||
};
|
||||
|
||||
_loadSeen () {
|
||||
@ -128,7 +126,9 @@ class Toast extends Component {
|
||||
</Link>
|
||||
</div>
|
||||
<div className="toast__action toast__action--close">
|
||||
<button className="btn btn--super-duper-compact" onClick={this._handleCancelClick}>
|
||||
<button className="btn btn--super-duper-compact"
|
||||
title="Dismiss notification"
|
||||
onClick={this._handleCancelClick}>
|
||||
<i className="fa fa-close"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -96,7 +96,7 @@ class WorkspaceDropdown extends Component {
|
||||
</DropdownItem>
|
||||
|
||||
<DropdownItem onClick={this._handleShowShareSettings}>
|
||||
<i className="fa fa-user"/> Share <strong>{activeWorkspace.name}</strong>
|
||||
<i className="fa fa-globe"/> Share <strong>{activeWorkspace.name}</strong>
|
||||
</DropdownItem>
|
||||
|
||||
<DropdownDivider>Switch Workspace</DropdownDivider>
|
||||
|
@ -211,7 +211,7 @@ class WorkspaceEnvironmentsEditModal extends Component {
|
||||
<ModalFooter>
|
||||
<div className="margin-left faint italic txt-sm tall">
|
||||
* environment data can be used for
|
||||
<Link href="https://mozilla.github.io/nunjucks/templating.html">
|
||||
<Link href="https://insomnia.rest/documentation/templating/">
|
||||
Nunjucks Templating
|
||||
</Link> in your requests
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user