switch places of download and copy buttons

This commit is contained in:
undergroundwires
2020-09-14 02:04:17 +01:00
parent 3785c623f8
commit 50fb29038a

View File

@@ -1,15 +1,15 @@
<template>
<div class="container" v-if="hasCode">
<IconButton
text="Copy"
v-on:click="copyCodeAsync"
icon-prefix="fas" icon-name="copy">
</IconButton>
<IconButton
text="Download"
v-on:click="saveCodeAsync"
icon-prefix="fas" icon-name="file-download">
</IconButton>
<IconButton
text="Copy"
v-on:click="copyCodeAsync"
icon-prefix="fas" icon-name="copy">
</IconButton>
</div>
</template>