From 59e0cf5905f63f9ccffdc9dd6bd7dec69c7979c7 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Fri, 1 Dec 2023 02:22:49 +0000 Subject: [PATCH] Fix action URLs --- webapp/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/main.js b/webapp/src/main.js index 9cbc414a..934de84c 100644 --- a/webapp/src/main.js +++ b/webapp/src/main.js @@ -67,7 +67,7 @@ Vue.mixin({ } }, thingActionUrl(thing, action) { - return this.$store.getters["wot/thingActionUrl"](thing, action); + return this.$store.getters["wot/thingActionUrl"](thing, action, "invokeaction"); }, modalConfirm: function(modalText) { var context = this;