Skip to content

Commit 0a6d541

Browse files
author
Guillaume Chau
committed
chore: remove console.log
1 parent e25bcb4 commit 0a6d541

File tree

1 file changed

+0
-4
lines changed
  • packages/@vue/cli-ui/apollo-server/connectors

1 file changed

+0
-4
lines changed

packages/@vue/cli-ui/apollo-server/connectors/widgets.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@ function move (input, context) {
246246
for (const otherWidget of widgets) {
247247
if (otherWidget !== widget) {
248248
if (areOverlapping(otherWidget, widget)) {
249-
console.log(otherWidget, widget)
250249
const otherDefinition = findDefinition(otherWidget, context)
251250
Object.assign(otherWidget, findValidPosition(otherDefinition, otherWidget))
252251
}
@@ -270,20 +269,17 @@ function areOverlapping (widgetA, widgetB) {
270269
async function openConfig ({ id }, context) {
271270
const widget = findById({ id }, context)
272271
const definition = findDefinition(widget, context)
273-
console.log('openConfig', widget, definition)
274272
if (definition.onConfigOpen) {
275273
const result = await definition.onConfigOpen({
276274
widget,
277275
definition,
278276
context
279277
})
280-
console.log(result)
281278
await prompts.reset(widget.config || {})
282279
result.prompts.forEach(prompts.add)
283280
await prompts.start()
284281
currentWidget = widget
285282
}
286-
console.log(widget, prompts.list())
287283
return widget
288284
}
289285

0 commit comments

Comments
 (0)