mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-14 23:57:07 +00:00
Add reminder for crates manage page
This commit is contained in:
parent
051085e821
commit
9301dbb890
1 changed files with 7 additions and 1 deletions
|
@ -159,7 +159,13 @@ function insertAddToExtensionElement(state) {
|
|||
};
|
||||
let content, iconAttributes, iconFile;
|
||||
if (state === "latest") {
|
||||
content = `<p>You already added this crate (v${installedVersion}). Click again to remove it.</p>`;
|
||||
content = `<p>
|
||||
You already added this crate (v${installedVersion}). Click again to remove it.
|
||||
Or click
|
||||
<a style="text-decoration: underline" target="_blank"
|
||||
href="${chrome.runtime.getURL("manage/crates.html")}">here</a>
|
||||
to manage all your indexed crates.
|
||||
</p>`;
|
||||
iconAttributes = `class="fa-svg fa-svg-fw" style="color:green"`;
|
||||
iconFile = SVG_CHECK_CIRCLE;
|
||||
} else if (state === "outdated") {
|
||||
|
|
Loading…
Reference in a new issue