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="/">
|
<SidebarTab tabName="save" tabLink="/">
|
||||||
<IconDownload />
|
<IconDownload />
|
||||||
</SidebarTab>
|
</SidebarTab>
|
||||||
|
<!--
|
||||||
<SidebarTab tabName="convert" tabLink="/convert">
|
<SidebarTab tabName="convert" tabLink="/convert">
|
||||||
<IconTransform />
|
<IconTransform />
|
||||||
</SidebarTab>
|
</SidebarTab>
|
||||||
<SidebarTab tabName="shrink" tabLink="/shrink">
|
<SidebarTab tabName="shrink" tabLink="/shrink">
|
||||||
<IconArrowsMinimize />
|
<IconArrowsMinimize />
|
||||||
</SidebarTab>
|
</SidebarTab>
|
||||||
|
-->
|
||||||
<SidebarTab tabName="remux" tabLink="/remux">
|
<SidebarTab tabName="remux" tabLink="/remux">
|
||||||
<IconRepeat />
|
<IconRepeat />
|
||||||
</SidebarTab>
|
</SidebarTab>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
export let tabName: string;
|
export let tabName: string;
|
||||||
export let tabLink: string;
|
export let tabLink: string;
|
||||||
|
|
||||||
const firstTabPage = ["save", "convert", "shrink", "remux"];
|
const firstTabPage = ["save", "remux", "settings", "donate"];
|
||||||
|
|
||||||
let tab: HTMLElement;
|
let tab: HTMLElement;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue