Reducing fontsize for pre tags, adding snappier updates when changing refresh rate or base url

This commit is contained in:
Ian Roddis
2022-02-24 11:59:37 -04:00
parent 9de8165aae
commit 7510fc288d
3 changed files with 22 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ body {
margin: 0px;
}
pre {
font-size: 1.0rem;
}
#app {
flex-flow: column wrap;
}

View File

@@ -29,6 +29,12 @@ export default {
},
watch: {
refreshSeconds() {
this.fetchRun();
},
daggydURL() {
this.fetchRun();
},
activeRunID() {
this.fetchRun();
},

View File

@@ -54,6 +54,18 @@ export default {
},
},
watch: {
refreshSeconds() {
this.fetchRuns();
},
daggydURL() {
this.fetchRuns();
},
activeRunID() {
this.fetchRuns();
},
},
methods: {
isNumeric(x) {
const p = parseFloat(x);