chore: remove bright counter from sidebar tab selector

This commit is contained in:
Yury Semikhatsky 2024-08-01 14:42:14 -07:00
parent 1074a765e4
commit e9e1378083

View file

@ -62,16 +62,7 @@ export const TabbedPane: React.FunctionComponent<{
setSelectedTab(tabs[e.currentTarget.selectedIndex].id); setSelectedTab(tabs[e.currentTarget.selectedIndex].id);
}}> }}>
{tabs.map(tab => { {tabs.map(tab => {
let suffix = ''; return <option value={tab.id} selected={tab.id === selectedTab}>{tab.title}</option>;
if (tab.count === 1)
suffix = ' 🔵';
else if (tab.count)
suffix = ` 🔵✖️${tab.count}`;
if (tab.errorCount === 1)
suffix = ` 🔴`;
else if (tab.errorCount)
suffix = ` 🔴✖️${tab.errorCount}`;
return <option value={tab.id} selected={tab.id === selectedTab}>{tab.title}{suffix}</option>;
})} })}
</select> </select>
</div>} </div>}