diff --git a/colors.css.example b/colors.css.example index 449a831..8b70f7d 100644 --- a/colors.css.example +++ b/colors.css.example @@ -3,12 +3,12 @@ --color-page-t: #000; --color-page-d: #292524; --color-page-dt: #fff; - --color-primary: #374151; + --color-primary: #621132; --color-primary-t: #fff; --color-primary-d: #1c1917; --color-primary-dt: #fff; - --color-secondary: #3b82f6; - --color-secondary-t: #fff; + --color-secondary: #fff; + --color-secondary-t: #621132; --color-secondary-d: #312e81; --color-secondary-dt: #fff; --color-primary-info: #06b6d4; diff --git a/package.json b/package.json index 75f2e80..633c636 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notsoweb.frontend", - "copyright": "Notsoweb Software Inc.", + "copyright": "Golsystems", "private": true, "version": "0.9.10", "type": "module", diff --git a/src/components/App/AddressSection.vue b/src/components/App/AddressSection.vue index f5ea06c..1684402 100644 --- a/src/components/App/AddressSection.vue +++ b/src/components/App/AddressSection.vue @@ -16,7 +16,7 @@ const handleSubmit = () => { // Emitir evento al padre con la nueva dirección emit('address-created', { - description: addressName.value + name: addressName.value }); // Limpiar el formulario diff --git a/src/components/App/MembershipSection.vue b/src/components/App/MembershipSection.vue index 45f281b..9e3cf89 100644 --- a/src/components/App/MembershipSection.vue +++ b/src/components/App/MembershipSection.vue @@ -169,7 +169,6 @@ const calculateTotal = () => { label="description" title="Servicio a pagar" :options="serviceOptions" - multiple /> diff --git a/src/pages/App/Address/Index.vue b/src/pages/App/Address/Index.vue index d4d2e79..2af8097 100644 --- a/src/pages/App/Address/Index.vue +++ b/src/pages/App/Address/Index.vue @@ -1,14 +1,14 @@ @@ -69,7 +70,7 @@ const handleAddressCreated = async (address) => {
| - {{ model.description }} + {{ model.name }} |
|