File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
packages/reva-admin-react/src/app/responsable-certifications/certifications/(list) Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -153,23 +153,26 @@ export default function RegistryManagerHomepage() {
153
153
154
154
if (
155
155
status === "A_VALIDER_PAR_CERTIFICATEUR" &&
156
- certificationPage . rows . length === 0
156
+ certificationPage . rows . length === 0 &&
157
+ searchFilter === ""
157
158
) {
158
159
return < NoCertificationsToValidate /> ;
159
160
}
160
161
161
162
if (
162
163
status === "VALIDE_PAR_CERTIFICATEUR" &&
163
164
visible &&
164
- certificationPage . rows . length === 0
165
+ certificationPage . rows . length === 0 &&
166
+ searchFilter === ""
165
167
) {
166
168
return < NoVisibleCertifications /> ;
167
169
}
168
170
169
171
if (
170
172
status === "VALIDE_PAR_CERTIFICATEUR" &&
171
173
! visible &&
172
- certificationPage . rows . length === 0
174
+ certificationPage . rows . length === 0 &&
175
+ searchFilter === ""
173
176
) {
174
177
return < NoInvisibleCertifications /> ;
175
178
}
You can’t perform that action at this time.
0 commit comments