Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin playground to v1.7.28 and add polyfill for mutation events #1159

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/Ui.Playground/Internal/playground.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
<meta charset=utf-8 />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<title>Graphcool Playground</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/css/index.css" />
<link rel="shortcut icon" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/favicon.png" />
<script src="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/static/css/index.css" integrity="sha384-xb+UHILNN4fV3NgQMTjXk0x9A80U0hmkraTFvucUYTILJymGT8E1Aq2278NSi5+3" crossorigin="anonymous">
<link rel="shortcut icon" href="https://cdn.jsdelivr.net/npm/[email protected]/build/favicon.png" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/mutation_events.min.js" integrity="sha384-3WfzKl+0b7sgUYFL5hMJv2xX3pkwyJd8uywnpsInos6fjSNB2zYFlaSgMP3/Lgpq" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/static/js/middleware.js" integrity="sha384-ardaO17esJ2ZxvY24V1OE6X4j+Z3WKgGMptrlDLmD+2w/JC3nbQ5ZfKGY2zfOPEE" crossorigin="anonymous"></script>
</head>
<body>
<div id="root">
Expand Down Expand Up @@ -41,7 +42,7 @@
font-weight: 400;
}
</style>
<img src='//cdn.jsdelivr.net/npm/graphql-playground-react/build/logo.png' alt=''>
<img src='https://cdn.jsdelivr.net/npm/graphql-playground-react@1.7.28/build/logo.png' alt=''>
<div class="loading">
Loading <span class="title">GraphQL Playground</span>
</div>
Expand Down
Loading