Fix the menu title for GraphiQL redirect (#3175)

This commit is contained in:
Jakub Neander 2023-02-17 11:11:22 +01:00 committed by GitHub
parent b040a0deb8
commit 91bd9c772d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -3546,6 +3546,10 @@
"context": "error message", "context": "error message",
"string": "Page not found." "string": "Page not found."
}, },
"PDw0YN": {
"context": "open new window button",
"string": "Open this product in GraphiQL"
},
"PFXGaR": { "PFXGaR": {
"string": "Shipping Zones" "string": "Shipping Zones"
}, },

View file

@ -2,8 +2,8 @@ import { defineMessages } from "react-intl";
export const messages = defineMessages({ export const messages = defineMessages({
openGraphiQL: { openGraphiQL: {
id: "5i/InH", id: "PDw0YN",
defaultMessage: "Open this order in GraphiQL", defaultMessage: "Open this product in GraphiQL",
description: "open new window button", description: "open new window button",
}, },
}); });