From 3cd8f06a9a14a1782d377a8ed2d7a074d2fd5b72 Mon Sep 17 00:00:00 2001 From: GongFlying <150640661+gzcqqqqqqqq1@users.noreply.github.com> Date: Mon, 3 Aug 2026 13:53:29 +0800 Subject: [PATCH 1/6] update ui --- .../participants/participant-select/index.js | 17 ++++++++++++++++- src/LinkEditor/pc-popover/index.js | 17 ++++++++++++++++- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/src/Comment/footer/participants/participant-select/index.js b/src/Comment/footer/participants/participant-select/index.js index 789b3dac..78ac7472 100644 --- a/src/Comment/footer/participants/participant-select/index.js +++ b/src/Comment/footer/participants/participant-select/index.js @@ -65,6 +65,10 @@ class ParticipantSelect extends Component { this.setState({ participants: updatedValue }); }; + clearSearchValue = () => { + this.setState({ searchVal: '' }); + }; + onChangeSearch = (event) => { let { searchVal } = this.state; if (searchVal === event.target.value) { @@ -146,7 +150,18 @@ class ParticipantSelect extends Component {