Skip to content
Snippets Groups Projects
Commit 9e464eaa authored by syuilo's avatar syuilo
Browse files

fix(frontend): fix retention chart rendering

parent 8b352e4e
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@
- Fix: ブラーエフェクトを有効にしている状態で高負荷になる問題を修正
- Fix: カラーバーがリプライには表示されないのを修正
- Fix: チャンネル内の検索ボックスが挙動不審な問題を修正
- Fix: リテンションチャートのレンダリングを修正
### Server
- センシティブワードの登録にAnd、正規表現が使用できるようになりました。
......
......@@ -40,7 +40,7 @@ async function renderChart() {
let raw = await os.api('retention', { });
raw = raw.slice(0, maxDays);
raw = raw.slice(0, maxDays + 1);
const data = [];
for (const record of raw) {
......
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