feat(web-app): rename function to have new measurments
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="control-panel">
|
||||
<button @click="addTemperature" class="action-button">
|
||||
<button @click="newMeasurments" class="action-button">
|
||||
New Measurments
|
||||
</button>
|
||||
|
||||
@@ -70,9 +70,9 @@ export default defineComponent({
|
||||
Multiselect,
|
||||
},
|
||||
methods: {
|
||||
addTemperature() {
|
||||
newMeasurments() {
|
||||
// Implement your functionality here
|
||||
console.log("Add temperature clicked");
|
||||
console.log("New measurments clicked");
|
||||
this.manager
|
||||
.getNewValue()
|
||||
.then((result) => {})
|
||||
@@ -81,7 +81,7 @@ export default defineComponent({
|
||||
});
|
||||
},
|
||||
fetchData() {
|
||||
console.log("Fetch data");
|
||||
console.log("Fetch measurments clicked");
|
||||
this.manager
|
||||
.getTimeSeriesData()
|
||||
.then((result) => {})
|
||||
|
||||
Reference in New Issue
Block a user