mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
Fix column icons
This commit is contained in:
parent
e018fe5468
commit
0176f1abc2
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "encora-tools",
|
"name": "encora-tools",
|
||||||
"version": "0.2.3",
|
"version": "0.2.4",
|
||||||
"description": "Adds extra features to the Encora trading site.",
|
"description": "Adds extra features to the Encora trading site.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": "https://github.com/musicalbean/encora-tools.git",
|
"repository": "https://github.com/musicalbean/encora-tools.git",
|
||||||
|
|||||||
@ -22,7 +22,7 @@ export default class OwnsColumn {
|
|||||||
span.innerText = count.toString() + " ";
|
span.innerText = count.toString() + " ";
|
||||||
|
|
||||||
let i = document.createElement("i");
|
let i = document.createElement("i");
|
||||||
i.classList.add("fad", "fa-arrow-down-left-from-square");
|
i.classList.add("fad", "fa-arrow-up-right-from-square");
|
||||||
|
|
||||||
a.appendChild(span);
|
a.appendChild(span);
|
||||||
a.appendChild(i);
|
a.appendChild(i);
|
||||||
|
|||||||
@ -22,7 +22,7 @@ export default class WantsColumn {
|
|||||||
span.innerText = count.toString() + " ";
|
span.innerText = count.toString() + " ";
|
||||||
|
|
||||||
let i = document.createElement("i");
|
let i = document.createElement("i");
|
||||||
i.classList.add("fad", "fa-arrow-down-left-from-square");
|
i.classList.add("fad", "fa-arrow-up-right-from-square");
|
||||||
|
|
||||||
a.appendChild(span);
|
a.appendChild(span);
|
||||||
a.appendChild(i);
|
a.appendChild(i);
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Encora Tools",
|
"name": "Encora Tools",
|
||||||
"version": "0.2.3",
|
"version": "0.2.4",
|
||||||
|
|
||||||
"icons": {
|
"icons": {
|
||||||
"32": "assets/icons/tools-32.png",
|
"32": "assets/icons/tools-32.png",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user