This is an automated email from the ASF dual-hosted git repository.
machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git
The following commit(s) were added to refs/heads/master by this push:
new 1ae4faa AIRAVATA-3163 For now, disable scrolling when selecting
experiment details
1ae4faa is described below
commit 1ae4faabeee885b4b7776fd1d3bb2a8fc2c235e5
Author: Marcus Christie <[email protected]>
AuthorDate: Wed Jul 24 08:47:57 2019 -0400
AIRAVATA-3163 For now, disable scrolling when selecting experiment details
---
.../src/components/statistics/ExperimentStatisticsContainer.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentStatisticsContainer.vue
b/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentStatisticsContainer.vue
index a98a443..01a13a7 100644
---
a/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentStatisticsContainer.vue
+++
b/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentStatisticsContainer.vue
@@ -584,7 +584,8 @@ export default {
this.experimentDetails.splice(index, 1);
},
scrollTabsIntoView() {
- this.$refs.tabs.$el.scrollIntoView();
+ // FIXME: AIRAVATA-3163: disabling since it prevents scrolling back up
to the header
+ // this.$refs.tabs.$el.scrollIntoView();
}
}
};