We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24c7bb commit 3936dfcCopy full SHA for 3936dfc
packages/@vue/cli-ui/apollo-server/connectors/tasks.js
@@ -137,7 +137,7 @@ function getSavedData (id, context) {
137
id
138
}).value()
139
// Clone
140
- data = JSON.parse(JSON.stringify(data))
+ if (data != null) data = JSON.parse(JSON.stringify(data))
141
return data
142
}
143
@@ -149,7 +149,7 @@ function updateSavedData (data, context) {
149
150
151
152
-async function getPrompts (id, context) {
+function getPrompts (id, context) {
153
return restoreParameters({ id }, context)
154
155
0 commit comments