dosubot[bot]
dosubot[bot]
Hello there, @ma-luca-fantin! I'm here to help you out with any bugs, questions, or contributions you might have. Let's tackle this issue together! Chainlit does support rendering Plotly figures, including...
It seems that `Scattermap` figures are not currently supported in Chainlit, as you've discovered. While `Scattermapbox` works, `Scattermap` does not render correctly within Chainlit. This might be due to the...
Hi @seanparmelee! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ant-design-charts team. This bug happens because the Funnel chart implementation mutates its options object in place when you toggle `compareField`. When you...
To resolve the `RuntimeError` related to a mismatch between models and the database when reinstalling Langflow version 1.0.10, you can use the `run_migrations` method with the `fix` parameter set to...
Hi @dargow! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the keep team. The API container is listening on port 8080, but your health check and port mapping expect it on 8081. This...
Yes, the port is effectively hardcoded in the container startup command. Even though the documentation says you can set the PORT environment variable to change the backend server port, the...
@PhieuDieuVoCuc Hello! I'm here to help you with bug fixes, questions, and becoming a contributor. The error you're encountering, `NameResolutionError`, indicates that the hostname 'dashscope-intl.aliyuncs.com' cannot be resolved. This is...
You're right—there's a mismatch between the docs and the Python SDK v3.0.3. The documentation claims you can update a trace's release directly in a span using `span.update_trace(release="...")` [see here](https://github.com/langfuse/langfuse-docs/blob/7902579eaf4b446d8911ca7db65ea5487378522f/pages/docs/tracing-features/releases-and-versioning.mdx), but...
Hi @tomatodev! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ant-design-charts team. 这个问题的根本原因是:ant-design-charts 在使用自定义图例(比如通过 color.render 返回一个 flex 容器)时,图表容器不会自动为图例动态高度预留空间,导致图例内容换行后会覆盖在图表区域上。框架本身没有内置的布局管理或 API 能让图表自动响应自定义图例的高度变化,也没有相关配置项能解决这个问题(详见[源码分析](https://github.com/ant-design/ant-design-charts/blob/0298f5ea20822191c4e1258e5461c7bc70daa3bb/packages/plots/src/hooks/useChart.ts#L48-L115))。 **解决思路:** - 推荐将自定义图例渲染在图表容器外部(比如和图表并列的 div),并通过 CSS 或父级布局手动为图例预留足够的空间(如设置 margin-bottom 或调整容器高度),确保图例不会覆盖图表。 - 如果必须将图例渲染在图表内部,可以在外层容器(比如 chart 的父...
この現象は、最近の「CASCADE削除」廃止による仕様変更が原因です。現在、元ノートが削除されても、そのノートを純粋にリノートした投稿(本文なしリノート)はDBに残り、タイムラインやノート一覧に表示され続けます。 Misskeyのバックエンド・API・フロントエンドいずれにも「元ノートが削除された純粋なリノートを自動で除外・非表示にする」ロジックは実装されていません。 現状、APIは元ノートが削除されたリノートも返し、フロントエンドもそのまま描画します(リノート先がnullのまま表示される)[1](https://github.com/misskey-dev/misskey/blob/da3b3af984971555d407bfe5c3947f183a9087a7/packages/backend/src/core/entities/NoteEntityService.ts#L27-L568) [2](https://github.com/misskey-dev/misskey/blob/da3b3af984971555d407bfe5c3947f183a9087a7/packages/frontend/src/components/MkNote.vue#L6-L283)。 このため、ご提案の通り「純粋なリノートは削除する」「APIで除外する」「フロントエンドで非表示にする」いずれかの対応が必要です。現状のMisskey本体にはそのような仕様・ワークアラウンドはありません。 もし即時の回避策が必要な場合は、フロントエンド側で「renoteがnullの純粋なリノート」を非表示にするカスタマイズが考えられます。 --- **参考** - [PR #16287: CASCADE削除廃止の詳細](https://github.com/misskey-dev/misskey/pull/16287) - [API/フロント挙動の該当実装](https://github.com/misskey-dev/misskey/blob/da3b3af984971555d407bfe5c3947f183a9087a7/packages/backend/src/core/entities/NoteEntityService.ts#L27-L568) - [MkNote.vue(フロント描画)](https://github.com/misskey-dev/misskey/blob/da3b3af984971555d407bfe5c3947f183a9087a7/packages/frontend/src/components/MkNote.vue#L6-L283) *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- How did I do? [Good](https://app.dosu.dev/response-feedback/67770be8-3cf2-4fdf-ae12-819f0cbba19d?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/67770be8-3cf2-4fdf-ae12-819f0cbba19d?feedback_type=irrelevant_answer) |...