signs post icon for recommended

This commit is contained in:
ThatOneCalculator 2022-07-28 21:58:25 -07:00
parent a0529277e3
commit 60dde2ef08
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.118.0-calc.15.b4",
"version": "12.118.0-calc.15.3.b4",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -147,7 +147,7 @@ const headerTabs = $computed(() => [{
}, {
key: 'recommended',
title: i18n.ts._timelines.recommended,
icon: 'fas fa-comet',
icon: 'fas fa-signs-post',
iconOnly: true,
}, {
key: 'social',
@ -178,7 +178,7 @@ const headerTabsWhenNotLogin = $computed(() => [
definePageMetadata(computed(() => ({
title: i18n.ts.timeline,
icon: src === 'local' ? 'fas fa-user-group' : src === 'social' ? 'fas fa-handshake-simple' : src === 'recommended' ? 'fas fa-comet' : src === 'global' ? 'fas fa-globe' : 'fas fa-home',
icon: src === 'local' ? 'fas fa-user-group' : src === 'social' ? 'fas fa-handshake-simple' : src === 'recommended' ? 'fas fa-signs-post' : src === 'global' ? 'fas fa-globe' : 'fas fa-home',
})));
</script>