Update the reload property button next to property controls

This commit is contained in:
Julian Stirling 2025-08-28 11:12:19 +01:00
parent 823456dbc2
commit 80ee303ac9
3 changed files with 49 additions and 30 deletions

View file

@ -85,9 +85,7 @@
type="number"
@keyup.enter="startMoveTask"
/>
<a class="button-next-to-input" @click="updatePosition">
<span class="material-symbols-outlined">refresh</span>
</a>
<sync-property-button @click="updatePosition" />
</div>
<p>
<action-button
@ -177,13 +175,15 @@
<script>
import axios from "axios";
import ActionButton from "../../labThingsComponents/actionButton.vue";
import syncPropertyButton from "../../labThingsComponents/syncPropertyButton.vue";
// Export main app
export default {
name: "PaneControl",
components: {
ActionButton
ActionButton,
syncPropertyButton
},
data: function() {
@ -375,11 +375,4 @@ export default {
-webkit-appearance: none;
margin: 0;
}
.button-next-to-input {
flex-grow: 0;
padding-left: 5px;
padding-right: 5px;
vertical-align: middle;
cursor: pointer;
}
</style>