Merge remote-tracking branch 'origin/master' into master
This commit is contained in:
commit
0fd503ca34
@ -35,6 +35,7 @@ div.info_curso(:style="estiloCurso")
|
||||
| {{ cursoAgregado? "remove": "add" }}
|
||||
span.material-icons(@click.stop="ocultar_mostrarCursoV" :title="cursoOculto? 'Mostrar': 'Ocultar'")
|
||||
| {{ cursoOculto? 'visibility_off': 'visibility' }}
|
||||
span {{ idCurso }}
|
||||
|
||||
|
||||
//
|
||||
@ -99,8 +100,8 @@ div.info_curso(:style="estiloCurso")
|
||||
cursoAgregado = computed (=>
|
||||
cursosUsuario = store.state.horarioUsuario
|
||||
|
||||
for idCurso, _ of cursosUsuario
|
||||
if idCurso is idCurso.value then return true
|
||||
for idCursoC, _ of cursosUsuario
|
||||
if idCursoC is idCurso.value then return true
|
||||
|
||||
false
|
||||
)
|
||||
|
@ -54,6 +54,8 @@ export default createStore({
|
||||
while (ref.length > 0) ref.pop()
|
||||
},
|
||||
agregarCursoAMiHorario(state, {nombre, datos}) {
|
||||
console.log(nombre);
|
||||
if (nombre === undefined) throw new Error("Error al agregar curso al horario. Nombre undefined.");
|
||||
if (!state.horarioUsuario[nombre]) {
|
||||
state.horarioUsuario[nombre] = datos;
|
||||
state.horarioUsuario = Object.assign({}, state.horarioUsuario);
|
||||
|
Loading…
Reference in New Issue
Block a user