Skip to content
Snippets Groups Projects
Unverified Commit 39c4e3a4 authored by zyoshoka's avatar zyoshoka Committed by GitHub
Browse files

fix(frontend): チャートのラベルが消えている問題を修正 (#13416)

* fix(frontend): チャートのラベルが消えている問題を修正

* Update CHANGELOG.md
parent ddd7b26f
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
- Enhance: ノート作成画面のファイル添付メニューの区切り線の位置を調整
- Fix: syuilo/misskeyの時代からあるインスタンスが改変されたバージョンであると誤認識される問題
- Fix: MFMのオートコンプリートが出るべき状況で出ないことがある問題を修正
- Fix: チャートのラベルが消えている問題を修正
### Server
- Fix: nodeinfoにenableMcaptchaとenableTurnstileが無いのを修正
......
......@@ -240,7 +240,7 @@ const render = () => {
},
external: externalTooltipHandler,
callbacks: {
label: (item) => chartData?.bytes ? bytes(item.parsed.y * 1000, 1) : item.parsed.y.toString(),
label: (item) => `${item.dataset.label}: ${chartData?.bytes ? bytes(item.parsed.y * 1000, 1) : item.parsed.y.toString()}`,
},
},
zoom: props.detailed ? {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment