Use function in TabWaiter

This commit is contained in:
j433866 2019-06-10 13:03:07 +01:00
parent be0e12589d
commit d99cf9d499
1 changed files with 3 additions and 11 deletions

View File

@ -953,11 +953,7 @@ class OutputWaiter {
* @param {number} inputNum
*/
async displayTabInfo(inputNum) {
const tabItem = this.manager.tabs.getOutputTabItem(inputNum);
if (!tabItem) return;
const tabContent = tabItem.firstElementChild,
dish = this.getOutputDish(inputNum);
const dish = this.getOutputDish(inputNum);
let tabStr = "";
if (dish !== null) {
@ -966,12 +962,8 @@ class OutputWaiter {
}
tabStr = tabStr.slice(0, 200);
if (tabStr === "") {
tabStr = `Tab ${inputNum}`;
} else {
tabStr = `${inputNum}: ${tabStr}`;
}
tabContent.innerText = tabStr;
this.manager.tabs.updateOutputTabHeader(inputNum, tabStr);
}