Item requests #297
|
@ -164,9 +164,9 @@ const confirmRequest = async (request) => {
|
|||
};
|
||||
|
||||
const getState = (isOk) => {
|
||||
if (isOk === null) return 'Pending';
|
||||
else if (isOk) return 'Accepted';
|
||||
else return 'Denied';
|
||||
if (isOk === null) return t('Pending');
|
||||
else if (isOk) return t('Accepted');
|
||||
else return t('Denied');
|
||||
};
|
||||
|
||||
const showDenyRequestForm = (requestId, rowIndex) => {
|
||||
|
@ -354,4 +354,7 @@ onBeforeMount(() => {
|
|||
es:
|
||||
Discard: Descartar
|
||||
You can search by Id or alias: Buscar peticiones por identificador o alias
|
||||
Denied: Denegada
|
||||
Accepted: Aceptada
|
||||
Pending: Pendiente
|
||||
</i18n>
|
||||
|
|
Loading…
Reference in New Issue