minor: remove question mark icon next to place revenue
This commit is contained in:
parent
1776bc8f44
commit
8ef22bf1cc
1 changed files with 1 additions and 1 deletions
|
|
@ -450,7 +450,7 @@ async function PlaceRevenue() {
|
|||
const ResultText = document.createElement('li');
|
||||
ResultText.classList = 'fw-normal text-success';
|
||||
ResultText.style.letterSpacing = '0px';
|
||||
ResultText.innerHTML = `<i class="pi pi-brick mx-1"></i> ~` + Revenue.toLocaleString() + ' <i class="fa fa-question"></i>';
|
||||
ResultText.innerHTML = `<i class="pi pi-brick mx-1"></i> ~` + Revenue.toLocaleString();
|
||||
|
||||
CalculateRevenueButton.remove();
|
||||
InfoColumns[1].appendChild(ResultText);
|
||||
|
|
|
|||
Reference in a new issue