fix: date copy & btn add emails

This commit is contained in:
Alexandro Uc Santos
2025-05-07 20:01:51 -06:00
parent 4eac691907
commit 8eeb750e91
5 changed files with 23 additions and 11 deletions

View File

@@ -297,7 +297,7 @@
<button
type="button"
@click="addObserver"
class="btn btn-dark"
class="btn-leading-input mb-4"
>
Agregar
</button>

View File

@@ -236,12 +236,12 @@
<option disabled value="">-- {{ t('labels.selectedRol') }} --</option>
<option value="manager">{{ t('labels.manager') }}</option>
<option value="staff">{{ t('labels.staff') }}</option>
<option
<!-- <option
v-if="authStore.user?.permissions === 'role_shipper'"
value="warehouse"
>
{{ t('labels.warehouse') }}
</option>
</option> -->
<option
v-if="authStore.user?.permissions === 'role_carrier'"
value="driver"
@@ -251,7 +251,7 @@
</select>
<span class="error-msg" v-if="errors.job_role">{{ errors.job_role }}</span>
</div>
<div v-if="userForm.job_role === 'warehouse'">
<!-- <div v-if="userForm.job_role === 'warehouse'">
<Spiner v-if="loadingWarehouses"/>
<div class="d-flex flex-column my-4" v-if="!loadingWarehouses">
<label class="custom-label required" for="locationLoad">{{ t('labels.warehouses') }}*</label>
@@ -266,8 +266,8 @@
</select>
<span class="error-msg" v-if="errors.warehouse">{{ errors.warehouse }}</span>
</div>
</div>
<div v-else>
</div> -->
<!-- <div v-else> -->
<div class="mb-4 mt-3">
<label class="custom-label">{{ t('global.segments') }}</label>
<Segments
@@ -296,7 +296,7 @@
:multiple="true"
/>
</div>
</div>
<!-- </div> -->
<div class="d-flex flex-column">
<label class="custom-label" for="description">{{ t('labels.userInfo') }}</label>
<textarea

View File

@@ -1,4 +1,3 @@
<template>
<div class="footer">
<div class="d-flex justify-content-between">
@@ -25,7 +24,7 @@
<RouterLink class="btn-links" :to="{name: 'faqs'}" target="_blank">Faqs</RouterLink>
</div>
</div>
<h4 class="copy"><i class="fa fa-copyright" aria-hidden="true"></i>2024 {{ $t('global.footer') }}</h4>
<h4 class="copy"><i class="fa fa-copyright" aria-hidden="true"></i>{{ new Date().getFullYear() }} {{ $t('global.footer') }}</h4>
</div>
</template>

View File

@@ -498,7 +498,7 @@ import { validateEmail } from '../helpers/validations';
<button
type="button"
@click="addObserver"
class="btn btn-dark"
class="btn-leading-input mb-4"
>
Agregar
</button>