More e2d tests (#258)

This commit is contained in:
Jonas Plum
2022-06-15 04:03:22 +02:00
committed by GitHub
parent 2ac1dd29ad
commit 2026cb3c6a
10 changed files with 181 additions and 53 deletions

View File

@@ -3,6 +3,7 @@
<div class="d-flex" >
<v-spacer></v-spacer>
<v-switch
id="advanced"
v-model="advanced"
label="Advanced"
class="float-right mt-0"

View File

@@ -1,7 +1,7 @@
<template>
<prism-editor
v-if="showEditor"
class="my-editor"
class="editor"
v-model="code"
:highlight="highlighter"
line-numbers

View File

@@ -43,8 +43,8 @@
<v-card-title> Delete {{ singular }} {{ deleteName }} ? </v-card-title>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="error" text @click="dialog = false">Cancel</v-btn>
<v-btn color="success" outlined @click="deleteItem(deleteName)">Delete</v-btn>
<v-btn id="cancel-button" color="error" text @click="dialog = false">Cancel</v-btn>
<v-btn id="delete-button" color="success" outlined @click="deleteItem(deleteName)">Delete</v-btn>
</v-card-actions>
</v-card>
</v-dialog>