mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-23 19:26:26 +01:00
web/Sidebar: hide unfinished tabs
This commit is contained in:
parent
b9fabdc327
commit
275c982c80
2 changed files with 3 additions and 1 deletions
|
@ -32,12 +32,14 @@
|
|||
<SidebarTab tabName="save" tabLink="/">
|
||||
<IconDownload />
|
||||
</SidebarTab>
|
||||
<!--
|
||||
<SidebarTab tabName="convert" tabLink="/convert">
|
||||
<IconTransform />
|
||||
</SidebarTab>
|
||||
<SidebarTab tabName="shrink" tabLink="/shrink">
|
||||
<IconArrowsMinimize />
|
||||
</SidebarTab>
|
||||
-->
|
||||
<SidebarTab tabName="remux" tabLink="/remux">
|
||||
<IconRepeat />
|
||||
</SidebarTab>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
export let tabName: string;
|
||||
export let tabLink: string;
|
||||
|
||||
const firstTabPage = ["save", "convert", "shrink", "remux"];
|
||||
const firstTabPage = ["save", "remux", "settings", "donate"];
|
||||
|
||||
let tab: HTMLElement;
|
||||
|
||||
|
|
Loading…
Reference in a new issue