fix(gui): search field selection

fixes search filed selection issue which breaks entire ui.

fix #210

Signed-off-by: Pranav C Balan <pranavxc@gmail.com>
This commit is contained in:
Pranav C Balan
2021-06-01 18:50:42 +05:30
parent 92b340bf5c
commit 6fe55b60aa
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
</template>
<v-list dense>
<v-list-item v-for="col in availableColumns" :key="col.cn"
@click="searchField = col.cn">
@click="searchField = col._cn">
<span class="caption">{{ col._cn }}</span>
</v-list-item>
</v-list>