mirror of https://github.com/portainer/portainer
fix(swarm/ui): keep stack detail page on the top [EE-4931] (#8858)
parent
58d130ee37
commit
1963d064a3
|
@ -11,12 +11,23 @@
|
||||||
<div class="searchBar vertical-center">
|
<div class="searchBar vertical-center">
|
||||||
<pr-icon icon="'search'" class-name="'searchIcon'"></pr-icon>
|
<pr-icon icon="'search'" class-name="'searchIcon'"></pr-icon>
|
||||||
<input
|
<input
|
||||||
|
ng-if="!$ctrl.notAutoFocus"
|
||||||
|
auto-focus
|
||||||
|
type="text"
|
||||||
|
class="searchInput"
|
||||||
|
ng-model="$ctrl.state.textFilter"
|
||||||
|
ng-change="$ctrl.onTextFilterChange()"
|
||||||
|
placeholder="Search for a service..."
|
||||||
|
ng-model-options="{ debounce: 300 }"
|
||||||
|
data-cy="service-searchInput"
|
||||||
|
/>
|
||||||
|
<input
|
||||||
|
ng-if="$ctrl.notAutoFocus"
|
||||||
type="text"
|
type="text"
|
||||||
class="searchInput"
|
class="searchInput"
|
||||||
ng-model="$ctrl.state.textFilter"
|
ng-model="$ctrl.state.textFilter"
|
||||||
ng-change="$ctrl.onTextFilterChange()"
|
ng-change="$ctrl.onTextFilterChange()"
|
||||||
placeholder="Search for a service..."
|
placeholder="Search for a service..."
|
||||||
auto-focus
|
|
||||||
ng-model-options="{ debounce: 300 }"
|
ng-model-options="{ debounce: 300 }"
|
||||||
data-cy="service-searchInput"
|
data-cy="service-searchInput"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue