diff --git a/components/environments/Edit.vue b/components/environments/Edit.vue index ee6920197..03210b67d 100644 --- a/components/environments/Edit.vue +++ b/components/environments/Edit.vue @@ -88,6 +88,26 @@ /> +
+ layers + + {{ $t("environments_empty") }} + + +
diff --git a/components/environments/Environment.vue b/components/environments/Environment.vue index 1279b93fc..09cf4ea2a 100644 --- a/components/environments/Environment.vue +++ b/components/environments/Environment.vue @@ -24,39 +24,41 @@ {{ environment.name }} - - - - - + + + - send - - {{ $t("waiting_send_req") }} - +
+
+ {{ $t("send_request") }} + {{ + $t("reset_request") + }} + Show all Shortcuts +
+
+
+ {{ getSpecialKey() }} + G +
+
+ {{ getSpecialKey() }} + I +
+
+ {{ getSpecialKey() }} + ? +
+
+
import findStatusGroup from "~/helpers/findStatusGroup" +import { getPlatformSpecialKey } from "~/helpers/platformutils" export default { props: { @@ -61,5 +81,19 @@ export default { return findStatusGroup(this.response.statusCode) }, }, + methods: { + getSpecialKey: getPlatformSpecialKey, + }, } + +