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;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
font-size: 1.0rem;
|
||||||
|
}
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
flex-flow: column wrap;
|
flex-flow: column wrap;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,12 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
|
refreshSeconds() {
|
||||||
|
this.fetchRun();
|
||||||
|
},
|
||||||
|
daggydURL() {
|
||||||
|
this.fetchRun();
|
||||||
|
},
|
||||||
activeRunID() {
|
activeRunID() {
|
||||||
this.fetchRun();
|
this.fetchRun();
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -54,6 +54,18 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
refreshSeconds() {
|
||||||
|
this.fetchRuns();
|
||||||
|
},
|
||||||
|
daggydURL() {
|
||||||
|
this.fetchRuns();
|
||||||
|
},
|
||||||
|
activeRunID() {
|
||||||
|
this.fetchRuns();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
isNumeric(x) {
|
isNumeric(x) {
|
||||||
const p = parseFloat(x);
|
const p = parseFloat(x);
|
||||||
|
|||||||
Reference in New Issue
Block a user