[Base] Dashboard 日期筛选文档中的 value 格式错误
Open
Beginner friendly
Nobody has claimed this yet.
bug
documentation
domain/base
- Dominant language
- Go
- Stars
- 17.3k
- Forks
- 1.4k
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 105
Description
问题
dashboard-block-data-config.md 将 datetime、created_at、updated_at 的筛选值写成了裸毫秒时间戳。该问题在当前 origin/main 中仍然存在。
Bad input
{
"field_name": "日期",
"operator": "is",
"value": 1785427200000
}
实际结果:
Filter value type is not match field type
Good input
{
"field_name": "日期",
"operator": "is",
"value": ["ExactDate", 1785427200000]
}
该格式已验证成功。
请修正:
skills/lark-base/references/dashboard-block-data-config.md
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open skills/lark-base/references/dashboard-block-data-config.md and locate the dashboard date-filter examples for datetime, created_at, and updated_at. Update the documented value format to match the verified input, then review the examples to ensure no bare millisecond timestamps remain.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- markdown
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 92/100