Skip to content

Commit

Permalink
corregir detalles
Browse files Browse the repository at this point in the history
  • Loading branch information
fermelli committed Jan 13, 2022
1 parent bfb8056 commit b29a3a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ const store = createStore({
},
saveSimulation(state, id) {
state.id = id;
console.log('guardado ' + id);
console.log('Simulación guardada ' + id);
},
saveMeasurement() {
console.log('medida guardada');
console.log('Medida guardada');
},
saveFinalData() {
console.log('datos finales');
console.log('Datos finales');
},
getSimulations(state, simulations) {
state.simulations = simulations;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Data.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ store.dispatch('getSimulations');
<router-link
class="link flex justify-center items-center h-8 w-8 rounded-full bg-white hover:bg-slate-800"
:to="{ name: 'detail', params: { id: id } }"
title="Datos"
title="Detalle simulación"
>
<svg class="fill-slate-80" width="24px" height="24px">
<use v-bind="{ 'xlink:href': '/feather-sprite.svg#' + 'open' }" />
Expand Down

0 comments on commit b29a3a8

Please sign in to comment.