aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/settings/services/ServicesDashboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/settings/services/ServicesDashboard.js b/src/components/settings/services/ServicesDashboard.js
index d88be74a4..c4e8e42a4 100644
--- a/src/components/settings/services/ServicesDashboard.js
+++ b/src/components/settings/services/ServicesDashboard.js
@@ -95,7 +95,7 @@ export default @observer class ServicesDashboard extends Component {
95 </div> 95 </div>
96 <LimitReachedInfobox /> 96 <LimitReachedInfobox />
97 <div className="settings__body"> 97 <div className="settings__body">
98 {services.length !== 0 && !isLoading && ( 98 {(services.length !== 0 || searchNeedle) && !isLoading && (
99 <SearchInput 99 <SearchInput
100 placeholder={intl.formatMessage(messages.searchService)} 100 placeholder={intl.formatMessage(messages.searchService)}
101 onChange={needle => filterServices({ needle })} 101 onChange={needle => filterServices({ needle })}