Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
chemicalcrux
/
feast
Seguir
1
Destacar
0
Fork
1
Código
Incidencias
2
Pull Requests
1
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Fix incorrect null check
vintage
Fen Dweller
hace 5 años
padre
dc8fe74339
commit
7453c101c0
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
src/components/Combat.vue
+ 1
- 1
src/components/Combat.vue
Ver fichero
@@ -161,7 +161,7 @@ export default class Combat extends Vue {
this.scrollParentTo(creature)
}
const target: HTMLElement|null = this.$el.querySelector("[data-active]")
if (
creature
!== null) {
if (
target
!== null) {
this.scrollParentTo(target)
}
})
Escribir
Vista previa
Cargando…
Cancelar
Guardar