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 445cf46 commit 8e58f3aCopy full SHA for 8e58f3a
src/components/ActivityEditor.vue
@@ -312,7 +312,10 @@ export default {
312
actions: [
313
{ text: 'Esegui', value: 'runProgramLegacy' },
314
{ text: 'Salva', value: 'saveProgram' },
315
- //{ text: 'Salva con Nome', value: 'saveas' },
+ { text: 'Carica Programma', value: 'loadProgramList' },
316
+ { text: 'Esporta', value: 'exportProgram' },
317
+ { text: 'Importa', value: 'pickFile' },
318
+ { text: 'Salva con Nome', value: 'toggleSaveAs' },
319
{ text: 'Mostra Codice', value: 'getProgramCode' },
320
],
321
value: 0,
@@ -354,7 +357,7 @@ export default {
354
357
defaultView: 'blocks',
355
358
viste: [
356
359
{ text: 'Blocchi', value: 'blocks' },
- { text: 'Esecuzione', value: 'exec', disabled: true},
360
+ { text: 'Esecuzione', value: 'exec', disabled: true },
361
{ text: 'Python', value: 'python', disabled: true }
362
363
};
0 commit comments