Skip to content

Commit

Permalink
ci: 更新 ss
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Jan 9, 2025
1 parent 90754c8 commit 027c5f7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/amis-ui/src/components/Breadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export class BreadcrumbItem extends React.Component<
classNameProp="Breadcrumb-icon"
/>
) : null}
<span className={cx('TplField')}>{label}</span>
<span className={cx('TplField fr-view')}>{label}</span>
</a>
);
}
Expand All @@ -205,7 +205,7 @@ export class BreadcrumbItem extends React.Component<
classNameProp="Breadcrumb-icon"
/>
) : null}
<span className={cx('TplField')}>{label}</span>
<span className={cx('TplField fr-view')}>{label}</span>
</span>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ exports[`Renderer:radios source & autoFill 1`] = `
</div>
</div>
<span
class="cxd-TplField autoFillClass"
class="cxd-TplField fr-view autoFillClass"
>
<span>
13
Expand Down
7 changes: 6 additions & 1 deletion packages/amis/src/renderers/Form/InputFile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,12 @@ export default class FileControl extends React.Component<FileProps, FileState> {
{__('File.clickUpload')}
</span>
</span>
<div className={cx('FileControl-acceptTip-help', 'TplField')}>
<div
className={cx(
'FileControl-acceptTip-help',
'TplField fr-view'
)}
>
{documentLink ? (
<a href={documentLink} onClick={e => e.stopPropagation()}>
{documentation ? documentation : __('File.helpText')}
Expand Down

0 comments on commit 027c5f7

Please sign in to comment.