diff --git a/assets/scss/styles.scss b/assets/scss/styles.scss index 16aa06884..5ab4ffbb7 100644 --- a/assets/scss/styles.scss +++ b/assets/scss/styles.scss @@ -38,7 +38,7 @@ input::placeholder, textarea::placeholder, .CodeMirror-empty { - @apply text-secondaryDark; + @apply text-secondary; @apply opacity-25; } diff --git a/components/graphql/RequestOptions.vue b/components/graphql/RequestOptions.vue index af80ffef1..f97926338 100644 --- a/components/graphql/RequestOptions.vue +++ b/components/graphql/RequestOptions.vue @@ -356,6 +356,7 @@ const variableEditor = ref(null) useCodemirror(variableEditor, variableString, { extendedEditorConfig: { mode: "application/ld+json", + placeholder: t("request.variables").toString(), }, linter: jsonLinter, completer: null, @@ -367,6 +368,7 @@ const schemaString = useReadonlyStream(props.conn.schema$, null) useCodemirror(queryEditor, gqlQueryString, { extendedEditorConfig: { mode: "graphql", + placeholder: t("request.query").toString(), }, linter: createGQLQueryLinter(schemaString), completer: queryCompleter(schemaString), diff --git a/components/graphql/Response.vue b/components/graphql/Response.vue index ea7d86fe1..953bb8cc0 100644 --- a/components/graphql/Response.vue +++ b/components/graphql/Response.vue @@ -52,6 +52,24 @@ justify-center " > +
+
+ + {{ $t("shortcut.general.command_menu") }} + + + {{ $t("shortcut.general.help_menu") }} + +
+
+
+ / +
+
+ ? +
+
+
diff --git a/components/http/ImportCurl.vue b/components/http/ImportCurl.vue index 422f78993..671541597 100644 --- a/components/http/ImportCurl.vue +++ b/components/http/ImportCurl.vue @@ -13,7 +13,7 @@