chrismattmann closed pull request #156: Testing fix
URL: https://github.com/apache/drat/pull/156
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/webapps/proteus-new/src/main/webapp/resources/src/App.vue
b/webapps/proteus-new/src/main/webapp/resources/src/App.vue
index b952de13..23768ae4 100644
--- a/webapps/proteus-new/src/main/webapp/resources/src/App.vue
+++ b/webapps/proteus-new/src/main/webapp/resources/src/App.vue
@@ -293,7 +293,7 @@ export default {
#contentpane{
padding-left: 10%;
padding-right: 10%;
- margin-bottom: 50px;
+ margin-bottom: 80px;
}
#footercard{
background-color: #2c3e50;
diff --git
a/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue
b/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue
index 3b716a10..594d6849 100644
---
a/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue
+++
b/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue
@@ -217,10 +217,11 @@ import store from './../store/store';
store,
props: [],
mounted() {
- this.loadData();
- this.timerClearVar= setInterval(function () {
+ this.timerClearVar= setInterval(function () {
this.loadData();
- }.bind(this), 30000);
+ }.bind(this), 1000);
+ this.loadData();
+
},
beforeDestroy(){
clearInterval(this.timerClearVar);
@@ -238,7 +239,7 @@ import store from './../store/store';
generated:true,
notes:true,
archives:true,
- docs:[''],
+ docs:[],
headers:[
{ text: '#',sortable: true, value: 'num' },
{ text: 'Location',sortable: false, value: 'loc' },
@@ -407,7 +408,7 @@ import store from './../store/store';
}
#licensefiletable{
- margin-bottom: 50px;
+ margin-bottom: 80px;
z-index: 950;
}
</style>
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services