Focus on newly added step element [sb_SCI-7938]

This commit is contained in:
sboursen-scinote 2023-02-24 10:49:18 +01:00
parent d42cd85533
commit 4ab8768024

View file

@ -421,7 +421,17 @@
this.elements.push(result.data)
}).error(() => {
HelperModule.flashAlertMsg(this.i18n.t('errors.general'), 'danger');
})
}).done(() => {
this.$parent.$nextTick(() => {
const children = this.$children
const lastChild = children[children.length - 1]
lastChild.$el.scrollIntoView(false)
window.scrollBy({
top: 200,
behavior: 'smooth'
});
})
});
},
addAttachment(attachment) {
this.attachments.push(attachment);