From e4b392eec9444dfebd32d46888c6c4a7f9137eed Mon Sep 17 00:00:00 2001 From: tappi287 Date: Mon, 5 Jul 2021 01:36:28 +0200 Subject: [PATCH] add Session Preset type to import preset switch --- vue/src/components/Main.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vue/src/components/Main.vue b/vue/src/components/Main.vue index b950fc5..400a4e7 100644 --- a/vue/src/components/Main.vue +++ b/vue/src/components/Main.vue @@ -464,8 +464,12 @@ export default { // Controls await this.$refs.con.importPreset(importPreset) break + case 3: + // Session + await this.$refs.ses.importPreset(importPreset) + break default: - this.makeToast('The type of preset you dropped is not supported or from a newer version than' + + this.makeToast('The type of preset you dropped is not supported or from a newer version than ' + 'your version of the app.', 'warning', 'Preset Import') } console.log(importPreset.preset_type)