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 5dfceab commit 836b76eCopy full SHA for 836b76e
src/codingworkshops/views/User.vue
@@ -30,15 +30,14 @@ export default {
30
name: '',
31
language: 'Blocks',
32
get code () {
33
- console.log('heyo', this.language)
34
return {
35
Blocks: JSON.stringify([
36
{
37
type: 'callMars',
38
func: 'rect',
39
params: [
40
- { type: 'literal', value: 10 },
41
+ { type: 'literal', value: 1 },
42
{ type: 'literal', value: 10 },
43
44
],
@@ -62,7 +61,6 @@ export default {
62
61
},
63
methods: {
64
async createProject () {
65
- console.log(JSON.stringify(this.data))
66
const { ok, errors, slug } = await this.$methods.createProject({
67
project: this.data,
68
})
0 commit comments