Item edit: Align group's aggregation function (#2454)

This was left behind in the recent class name change.

Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
pull/2465/head
jimtng 2024-03-07 09:17:34 +10:00 committed by GitHub
parent 0f804357c5
commit a2559de97f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
:value="getStateDescription()" :value="getStateDescription()"
@input="item.stateDescriptionPattern = $event.target.value" :clear-button:="editable" /> @input="item.stateDescriptionPattern = $event.target.value" :clear-button:="editable" />
<!-- Aggregation Functions --> <!-- Aggregation Functions -->
<f7-list-item v-if="aggregationFunctions" :disabled="!editable" title="Aggregation Function" class="align-popup-list-item" smart-select :smart-select-params="{openIn: 'popup', closeOnSelect: true}"> <f7-list-item v-if="aggregationFunctions" :disabled="!editable" title="Aggregation Function" class="aligned-smart-select" smart-select :smart-select-params="{openIn: 'popup', closeOnSelect: true}">
<select name="select-function" @change="groupFunctionKey = $event.target.value"> <select name="select-function" @change="groupFunctionKey = $event.target.value">
<option v-for="type in aggregationFunctions" :key="type.name" :value="type.name" :selected="type.name === groupFunctionKey"> <option v-for="type in aggregationFunctions" :key="type.name" :value="type.name" :selected="type.name === groupFunctionKey">
{{ type.value }} {{ type.value }}