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> <template>
<div class="container" v-if="hasCode"> <div class="container" v-if="hasCode">
<IconButton
text="Copy"
v-on:click="copyCodeAsync"
icon-prefix="fas" icon-name="copy">
</IconButton>
<IconButton <IconButton
text="Download" text="Download"
v-on:click="saveCodeAsync" v-on:click="saveCodeAsync"
icon-prefix="fas" icon-name="file-download"> icon-prefix="fas" icon-name="file-download">
</IconButton> </IconButton>
<IconButton
text="Copy"
v-on:click="copyCodeAsync"
icon-prefix="fas" icon-name="copy">
</IconButton>
</div> </div>
</template> </template>