summaryrefslogtreecommitdiff
path: root/packages/frontend/src/local-storage.ts
diff options
context:
space:
mode:
authorikasoba <57828948+ikasoba@users.noreply.github.com>2023-12-22 20:41:42 +0900
committerGitHub <noreply@github.com>2023-12-22 20:41:42 +0900
commit5eb944ecdeb0d65ec82b89522dfdf37d980bdb51 (patch)
tree64f65c61b3f82db257090def7e8918528415488e /packages/frontend/src/local-storage.ts
parent[Hub Next] Misskey Hubのリンクを変更 (#12699) (diff)
downloadmisskey-5eb944ecdeb0d65ec82b89522dfdf37d980bdb51.tar.gz
misskey-5eb944ecdeb0d65ec82b89522dfdf37d980bdb51.tar.bz2
misskey-5eb944ecdeb0d65ec82b89522dfdf37d980bdb51.zip
enhance: チャンネルに新規の投稿がある場合にバッジを表示させる (#12690)
* 多分できたかも * 不要なpropsを削除 * 不要なimportを削除 * 縁を付けた * 枠線の位置を端に寄せた * やっぱり内側へ寄せることにした * できたかも * 修正 * 修正 * クラスにまとめた * 微調整 * 直せたかも * importを付け足し * 多分できたかも * Update channel.vue * Update MkMenu.vue * Update channel.vue * Update CHANGELOG.md --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src/local-storage.ts')
-rw-r--r--packages/frontend/src/local-storage.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/local-storage.ts b/packages/frontend/src/local-storage.ts
index 0d73885b68..1ef115978e 100644
--- a/packages/frontend/src/local-storage.ts
+++ b/packages/frontend/src/local-storage.ts
@@ -35,7 +35,8 @@ type Keys =
`themes:${string}` |
`aiscript:${string}` |
'lastEmojisFetchedAt' | // DEPRECATED, stored in indexeddb (13.9.0~)
- 'emojis' // DEPRECATED, stored in indexeddb (13.9.0~);
+ 'emojis' | // DEPRECATED, stored in indexeddb (13.9.0~);
+ `channelLastReadedAt:${string}`
export const miLocalStorage = {
getItem: (key: Keys): string | null => window.localStorage.getItem(key),