Skip to content

Commit 353e621

Browse files
committed
PSTGRSCROC-141
1 parent cb90af1 commit 353e621

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/malewicz/src/components/ColumnsComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<v-list-item-content>
1919
<v-list-item-title v-if="column.name==='endpoint'">{{ $t('cluster') }}</v-list-item-title>
20-
<v-list-item-title v-else>{{ column.label }}</v-list-item-title>
20+
<v-list-item-title v-else>{{ column.text }}</v-list-item-title>
2121
<v-list-item-subtitle>
2222
<v-textarea v-if="column.name==='endpoint'" :value="$t('sourceCluster')" :rows=1 :flat=true readonly></v-textarea>
2323
<v-textarea v-else :value="column.description" :rows=1 :flat=true readonly></v-textarea>

src/main/malewicz/src/components/CustomComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<v-icon medium v-if="JSON.parse(props.item[met.name].value).icon">
3838
{{ JSON.parse(props.item[met.name].value).icon }}
3939
</v-icon>
40-
<v-chip v-else color="green" style="cursor: pointer" dark>{{ JSON.parse(props.item[met.name].value).label }}</v-chip>
40+
<v-chip v-else color="green" style="cursor: pointer" dark>{{ JSON.parse(props.item[met.name].value).text }}</v-chip>
4141
</a>
4242
</span>
4343
<span v-else-if="(met.type==='inet' || met.type==='xid') && props.item[met.name]">

src/main/malewicz/src/components/FilterComponent.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,28 @@
1515
<span v-if="item.name === 'endpoint'"></span>
1616
<span v-else-if="item.type === 'timestamptz'">
1717
<VueCtkDateTimePicker
18-
:label="item.label"
18+
:label="item.text"
1919
format="YYYY-MM-DD HH:mm"
2020
color="green"
2121
:range=true
2222
v-model='localFilter[item.name]' />
2323
</span>
2424
<v-combobox v-else-if="item.values"
2525
v-model='localFilter[item.name]'
26-
:label="item.label"
26+
:label="item.text"
2727
:items="item.values"
2828
clearable>
2929
</v-combobox>
3030
<v-text-field v-else-if="item.type == 'numeric' || item.type == 'float8' || item.type == 'int8'"
3131
v-model='localFilter[item.name]'
3232
type = "number"
33-
:label="item.label"
33+
:label="item.text"
3434
clearable
3535
filled>
3636
</v-text-field>
3737
<v-text-field v-else
3838
v-model='localFilter[item.name]'
39-
:label="item.label"
39+
:label="item.text"
4040
clearable
4141
filled>
4242
</v-text-field>

0 commit comments

Comments
 (0)