This commit is contained in:
@@ -33,17 +33,19 @@
|
|||||||
<v-data-table
|
<v-data-table
|
||||||
:headers="[
|
:headers="[
|
||||||
{
|
{
|
||||||
text: 'Key',
|
text: $ay.t('KeyKey'),
|
||||||
align: 'start',
|
align: 'start',
|
||||||
sortable: false,
|
|
||||||
value: 'key'
|
value: 'key'
|
||||||
},
|
},
|
||||||
{ text: 'Display', value: 'display' }
|
{ text: $ay.t('DisplayKey'), value: 'display' }
|
||||||
]"
|
]"
|
||||||
:items="filteredItems()"
|
:items="obj.translationItems"
|
||||||
>
|
>
|
||||||
<template v-slot:item.name="props">
|
<template v-slot:item.display="props">
|
||||||
<v-edit-dialog :return-value.sync="props.item.display">
|
<v-edit-dialog
|
||||||
|
large
|
||||||
|
:return-value.sync="props.item.display"
|
||||||
|
>
|
||||||
{{ props.item.display }}
|
{{ props.item.display }}
|
||||||
<template v-slot:input>
|
<template v-slot:input>
|
||||||
<v-text-field
|
<v-text-field
|
||||||
|
|||||||
Reference in New Issue
Block a user