Feat: The image displayed in the reply message can also be clicked to display the location of the source document where the slice is located #7623 (#7723)

### What problem does this PR solve?

Feat: The image displayed in the reply message can also be clicked to
display the location of the source document where the slice is located
#7623

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-05-20 10:40:53 +08:00
committed by GitHub
parent fed1221302
commit 1ae7b942d9
3 changed files with 53 additions and 8 deletions

View File

@ -7,6 +7,7 @@ import styles from './index.less';
interface IImage {
id: string;
className: string;
onClick?(): void;
}
const Image = ({ id, className, ...props }: IImage) => {