fix(plugin-gantt): 删除冗余行「定位」图标;「→」详情按钮改独立操作槽#2487
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
✅ Console Performance Budget
📦 Bundle Size Report
Size Limits
|
os-zhuang
added a commit
that referenced
this pull request
Jul 14, 2026
…asts (#2488) The AI chat switcher/bound-package derivations cast `(app as { _packageId?: string })` at every access (4 sites). Narrow `useMetadata().apps` once to a local MetadataAppItem shape at the hook boundary; call sites now read .name / .label / ._packageId without casts. Type-only, no runtime change. Refs #2487 (A1). Co-authored-by: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Contributor
|
Progress:
Remaining items (A2–A4, B1–B3, C1–C4) intentionally NOT batch-rammed in one pass: B changes behavior (needs live verification), C is large/cross-repo (needs review + cloud coordination). Recommend proceeding one PR at a time with real CI + live checks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #2482
问题
#2460 落地「行单击=Focus 定位」后,任务列表行右缘遗留两个体验问题:
position: absolute锚在行右缘,悬停显示时直接压在结束日期文字上;按钮无内边距,点击热区只有 12×12px 裸图标。修复(
GanttView.tsx)gantt.row.locate(useGanttTranslation 兜底 + zh/en locale);定位能力由行单击承担,无功能损失。hover:bg-accent底色,图标 14px;.group/task-row:hover .gantt-row-open-btn(0,3,0)压过按钮自身:hover { opacity: 1 }(0,2,0),按钮自悬停时永远停在 60% 透明度——用:where()把行悬停规则降为零特异性。测试