summaryrefslogtreecommitdiff
path: root/src/views/_sila/HardwareStatus
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-22 11:11:36 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-22 11:11:36 +0300
commit9c3f13239953c79962c50015062de147b4661760 (patch)
treee3481679d20c5566adf98b99c01cb869d7ff9a41 /src/views/_sila/HardwareStatus
parent0352f3ab94c5e00fe719b81926d5cd25903837c4 (diff)
downloadwebui-vue-9c3f13239953c79962c50015062de147b4661760.tar.xz
SILABMC-191: Move search field to page title
Diffstat (limited to 'src/views/_sila/HardwareStatus')
-rw-r--r--src/views/_sila/HardwareStatus/Sensors/Sensors.vue16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/views/_sila/HardwareStatus/Sensors/Sensors.vue b/src/views/_sila/HardwareStatus/Sensors/Sensors.vue
index 347efd6c..3f1eb59a 100644
--- a/src/views/_sila/HardwareStatus/Sensors/Sensors.vue
+++ b/src/views/_sila/HardwareStatus/Sensors/Sensors.vue
@@ -2,21 +2,21 @@
<b-container fluid="xl">
<page-title />
<b-row class="align-items-end">
- <b-col sm="6" md="5" xl="4">
+ <b-col sm="8" xl="6" class="search-block d-sm-flex align-items-end mb-4">
<search
:placeholder="$t('pageSensors.searchForSensors')"
data-test-id="sensors-input-searchForSensors"
@change-search="onChangeSearchInput"
@clear-search="onClearSearchInput"
/>
+ <div class="ml-sm-4">
+ <table-cell-count
+ :filtered-items-count="filteredRows"
+ :total-number-of-cells="allSensors.length"
+ ></table-cell-count>
+ </div>
</b-col>
- <b-col sm="3" md="3" xl="2">
- <table-cell-count
- :filtered-items-count="filteredRows"
- :total-number-of-cells="allSensors.length"
- ></table-cell-count>
- </b-col>
- <b-col sm="3" md="4" xl="6" class="text-right">
+ <b-col class="text-right">
<table-filter :filters="tableFilters" @filter-change="onFilterChange" />
</b-col>
</b-row>