reverted dragging to old method

This commit is contained in:
tim
2025-03-17 14:53:31 -04:00
parent 5876efe29f
commit cd84e7c3c9
2 changed files with 10 additions and 36 deletions

View File

@@ -24,12 +24,13 @@
</v-card>
</v-dialog>
<v-dialog v-model="showWarnings" max-width="300">
<v-card prepend-icon="mdi-warning" title="Order Warnings" text="Your order has the following warnings:">
<v-card-text>
<v-list>
<v-list-item v-for="w of orderWarnings">{{w}}</v-list-item>
</v-list>
</v-card-text>
<v-card prepend-icon="mdi-warning" title="Order Warnings">
<v-card-item>
<ul class="ml-5">
<li v-for="w of orderWarnings">{{w}}</li>
</ul>
</v-card-item>
<v-card-text>Continue placing this order?</v-card-text>
<v-card-actions>
<v-spacer/>
<v-btn @click="()=>showWarnings=false">Back</v-btn>