File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
packages/@vue/cli-ui/apollo-server/connectors Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,6 @@ function move (input, context) {
246
246
for ( const otherWidget of widgets ) {
247
247
if ( otherWidget !== widget ) {
248
248
if ( areOverlapping ( otherWidget , widget ) ) {
249
- console . log ( otherWidget , widget )
250
249
const otherDefinition = findDefinition ( otherWidget , context )
251
250
Object . assign ( otherWidget , findValidPosition ( otherDefinition , otherWidget ) )
252
251
}
@@ -270,20 +269,17 @@ function areOverlapping (widgetA, widgetB) {
270
269
async function openConfig ( { id } , context ) {
271
270
const widget = findById ( { id } , context )
272
271
const definition = findDefinition ( widget , context )
273
- console . log ( 'openConfig' , widget , definition )
274
272
if ( definition . onConfigOpen ) {
275
273
const result = await definition . onConfigOpen ( {
276
274
widget,
277
275
definition,
278
276
context
279
277
} )
280
- console . log ( result )
281
278
await prompts . reset ( widget . config || { } )
282
279
result . prompts . forEach ( prompts . add )
283
280
await prompts . start ( )
284
281
currentWidget = widget
285
282
}
286
- console . log ( widget , prompts . list ( ) )
287
283
return widget
288
284
}
289
285
You can’t perform that action at this time.
0 commit comments