refs #5509 fix(vnDms): fix issues
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2024-02-27 08:22:38 +01:00
parent 4988df882c
commit c8a4854df9
4 changed files with 8 additions and 6 deletions

View File

@ -154,7 +154,7 @@ async function save() {
hasChanges.value = false; hasChanges.value = false;
} catch (err) { } catch (err) {
console.error(err); console.error(err);
notify('errors.create', 'negative'); notify('errors.writeRequest', 'negative');
} }
isLoading.value = false; isLoading.value = false;
} }

View File

@ -233,9 +233,11 @@ function parseDms(data) {
:is="props.col.component" :is="props.col.component"
v-bind="props.col.props && props.col.props(props)" v-bind="props.col.props && props.col.props(props)"
> >
<span v-if="props.col.component == 'span'">{{ <span
props.value v-if="props.col.component == 'span'"
}}</span> style="white-space: wrap"
>{{ props.value }}</span
>
</component> </component>
</QTr> </QTr>

View File

@ -88,7 +88,7 @@ export default {
statusBadGateway: 'It seems that the server has fall down', statusBadGateway: 'It seems that the server has fall down',
statusGatewayTimeout: 'Could not contact the server', statusGatewayTimeout: 'Could not contact the server',
userConfig: 'Error fetching user config', userConfig: 'Error fetching user config',
create: 'Error during creation', writeRequest: 'The requested operation could not be completed',
}, },
login: { login: {
title: 'Login', title: 'Login',

View File

@ -88,7 +88,7 @@ export default {
statusBadGateway: 'Parece ser que el servidor ha caído', statusBadGateway: 'Parece ser que el servidor ha caído',
statusGatewayTimeout: 'No se ha podido contactar con el servidor', statusGatewayTimeout: 'No se ha podido contactar con el servidor',
userConfig: 'Error al obtener configuración de usuario', userConfig: 'Error al obtener configuración de usuario',
create: 'Error al crear', writeRequest: 'No se pudo completar la operación solicitada',
}, },
login: { login: {
title: 'Inicio de sesión', title: 'Inicio de sesión',