mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
s/star-struct/starstruck/g
(#393)
* `s/star-struct/starstruck/g` * lint
This commit is contained in:
parent
79b405ec3f
commit
df56c427b0
4 changed files with 8 additions and 8 deletions
|
@ -47,8 +47,8 @@
|
|||
pkg.categories.includes(SideMenuOptions.featured),
|
||||
[SideMenuOptions.essentials]: (pkg: GUIPackage) =>
|
||||
pkg.categories.includes(SideMenuOptions.essentials),
|
||||
[SideMenuOptions.star_struct]: (pkg: GUIPackage) =>
|
||||
pkg.categories.includes(SideMenuOptions.star_struct),
|
||||
[SideMenuOptions.starstruck]: (pkg: GUIPackage) =>
|
||||
pkg.categories.includes(SideMenuOptions.starstruck),
|
||||
[SideMenuOptions.made_by_tea]: (pkg: GUIPackage) => pkg.full_name.includes("tea.xyz")
|
||||
};
|
||||
|
||||
|
|
|
@ -51,9 +51,9 @@
|
|||
on:click={() => goto(`/?tab=${SideMenuOptions.essentials}`)}
|
||||
/>
|
||||
<hr/>
|
||||
<MenuButton label={$t("tags.star_struct")} icon="star-full"
|
||||
active={activeOption === SideMenuOptions.star_struct}
|
||||
on:click={() => goto(`/?tab=${SideMenuOptions.star_struct}`)}
|
||||
<MenuButton label={$t("tags.starstruck")} icon="star-full"
|
||||
active={activeOption === SideMenuOptions.starstruck}
|
||||
on:click={() => goto(`/?tab=${SideMenuOptions.starstruck}`)}
|
||||
/>
|
||||
<hr/>
|
||||
<MenuButton label={$t("tags.made_by_tea")} icon="tea-logo-iconasset-1"
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
"popular": "Popular",
|
||||
"featured": "Featured",
|
||||
"essentials": "Essentials",
|
||||
"star_struct": "Star-struct Heavyweights",
|
||||
"starstruck": "Starstruck Heavyweights",
|
||||
"made_by_tea": "Made by Tea.xyz"
|
||||
},
|
||||
"tags": {
|
||||
|
@ -71,7 +71,7 @@
|
|||
"popular": "Popular",
|
||||
"featured": "Featured",
|
||||
"essentials": "Essentials",
|
||||
"star_struct": "Star-struck",
|
||||
"starstruck": "Starstruck",
|
||||
"made_by_tea": "Made by tea.xyz"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ export enum SideMenuOptions {
|
|||
popular = "popular",
|
||||
featured = "featured",
|
||||
essentials = "essentials",
|
||||
star_struct = "star_struct",
|
||||
starstruck = "starstruck",
|
||||
made_by_tea = "made_by_tea"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue