docs(system): 修复 BackupRowProps 文档里 Popover 的 broken intra-doc link
Some checks failed
CI / check (push) Failing after 11m58s
CI / build (push) Has been skipped

[`Popover`] 简写形式解析失败——Popover 的 use 只在 fn BackupRow 函数体里,
对 BackupRowProps struct 的 doc comment 不可见。补全为全路径
[`Popover`](crate::components::ui::Popover),保留可点击跳转。
This commit is contained in:
xfy 2026-07-14 13:39:34 +08:00
parent eccaa9f2a9
commit 0e4109358f

View File

@ -1476,7 +1476,7 @@ fn urlencode_dl(s: &str) -> String {
/// 备份列表单行(抽取为子组件:各自 scope 内 let/clone 不冲突)。
///
/// 删除/恢复不再用浏览器原生 confirm(),改用 [`Popover`] 确认框(`position:fixed`
/// 删除/恢复不再用浏览器原生 confirm(),改用 [`Popover`](crate::components::ui::Popover) 确认框(`position:fixed`
/// 逃出表格 `overflow-hidden`)。点击按钮读 `MouseEvent::client_coordinates()` 作为
/// popover 锚点,`confirm` 按钮回调父组件的 `on_delete`/`on_restore`。
#[derive(Props, Clone, PartialEq)]