Fix global search in overview
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -33,14 +33,14 @@
|
|||||||
({{ t('deck', 'Archived cards') }})
|
({{ t('deck', 'Archived cards') }})
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="board" class="board-actions">
|
<div class="board-actions">
|
||||||
<div v-if="searchQuery || true" class="deck-search">
|
<div v-if="searchQuery || true" class="deck-search">
|
||||||
<input type="search"
|
<input type="search"
|
||||||
class="icon-search"
|
class="icon-search"
|
||||||
:value="searchQuery"
|
:value="searchQuery"
|
||||||
@input="$store.commit('setSearchQuery', $event.target.value)">
|
@input="$store.commit('setSearchQuery', $event.target.value)">
|
||||||
</div>
|
</div>
|
||||||
<div v-if="canManage && !showArchived && !board.archived"
|
<div v-if="board && canManage && !showArchived && !board.archived"
|
||||||
id="stack-add"
|
id="stack-add"
|
||||||
v-click-outside="hideAddStack">
|
v-click-outside="hideAddStack">
|
||||||
<Actions v-if="!isAddStackVisible">
|
<Actions v-if="!isAddStackVisible">
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
value="">
|
value="">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="board-action-buttons">
|
<div v-if="board" class="board-action-buttons">
|
||||||
<Popover @show="filterVisible=true" @hide="filterVisible=false">
|
<Popover @show="filterVisible=true" @hide="filterVisible=false">
|
||||||
<Actions slot="trigger" :title="t('deck', 'Apply filter')">
|
<Actions slot="trigger" :title="t('deck', 'Apply filter')">
|
||||||
<ActionButton v-if="isFilterActive" icon="icon-filter_set" />
|
<ActionButton v-if="isFilterActive" icon="icon-filter_set" />
|
||||||
|
|||||||
@@ -207,6 +207,8 @@ export default {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: calc(100vh - 50px);
|
max-height: calc(100vh - 50px);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overview {
|
.overview {
|
||||||
|
|||||||
Reference in New Issue
Block a user