reverted dragging to old method
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user