#6238 addPercentageColumn #443
No reviewers
Labels
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#443
Loading…
Reference in New Issue
No description provided.
Delete Branch "6238-addPercentageColumn"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -90,3 +90,3 @@
);
const componentIsRendered = ref(false);
const arrayData = useArrayData(modelValue);
const arrayData = useArrayData(modelValue.value);
Faltaba ponerlo.
Revisar
@ -115,13 +115,13 @@ const emit = defineEmits(['onFetch']);
</QBtn>
</RouterLink>
<QBtn
v-if="$slots.menu"
Así lo oculta. y permite que haya una disposición de 3 btn en todo el ancho.
@jgallego hay que revisar la interfaz
@ -509,0 +517,4 @@
:class="{
'bg-red-10': getKgPercentage(props.row) >= 100,
'bg-deep-orange-10':
getKgPercentage(props.row) >= 80 &&
numero en el codigo no tabla
@ -422,0 +438,4 @@
const getColor = (percentage) => {
if (percentage >= 100) return 'red-10';
else if (percentage >= 80 && percentage < 100) return 'deep-orange-10';
mover esto a la tabla que hemos hablado
@ -581,0 +623,4 @@
.bg-travel {
background-color: var(--vn-page-color);
border-bottom: 1.6px solid orange;
Usa una variable
@ -2,8 +2,7 @@ const locationOptions = '[role="listbox"] > div.q-virtual-scroll__content > .q-i
describe('VnLocation', () => {
Corrige el test
Separar a rama nueva