Reducing fontsize for pre tags, adding snappier updates when changing refresh rate or base url
This commit is contained in:
@@ -9,6 +9,10 @@ body {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 1.0rem;
|
||||
}
|
||||
|
||||
#app {
|
||||
flex-flow: column wrap;
|
||||
}
|
||||
|
||||
@@ -29,6 +29,12 @@ export default {
|
||||
},
|
||||
|
||||
watch: {
|
||||
refreshSeconds() {
|
||||
this.fetchRun();
|
||||
},
|
||||
daggydURL() {
|
||||
this.fetchRun();
|
||||
},
|
||||
activeRunID() {
|
||||
this.fetchRun();
|
||||
},
|
||||
|
||||
@@ -54,6 +54,18 @@ export default {
|
||||
},
|
||||
},
|
||||
|
||||
watch: {
|
||||
refreshSeconds() {
|
||||
this.fetchRuns();
|
||||
},
|
||||
daggydURL() {
|
||||
this.fetchRuns();
|
||||
},
|
||||
activeRunID() {
|
||||
this.fetchRuns();
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
isNumeric(x) {
|
||||
const p = parseFloat(x);
|
||||
|
||||
Reference in New Issue
Block a user