aboutsummaryrefslogtreecommitdiff
path: root/src/components/exporter/exporter.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/exporter/exporter.vue')
-rw-r--r--src/components/exporter/exporter.vue12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/components/exporter/exporter.vue b/src/components/exporter/exporter.vue
index f22e579e..f5126dc1 100644
--- a/src/components/exporter/exporter.vue
+++ b/src/components/exporter/exporter.vue
@@ -1,10 +1,16 @@
<template>
<div class="exporter">
<div v-if="processing">
- <i class="icon-spin4 animate-spin exporter-processing"></i>
- <span>{{processingMessage}}</span>
+ <i class="icon-spin4 animate-spin exporter-processing" />
+ <span>{{ processingMessage }}</span>
</div>
- <button class="btn btn-default" @click="process" v-else>{{exportButtonLabel}}</button>
+ <button
+ v-else
+ class="btn btn-default"
+ @click="process"
+ >
+ {{ exportButtonLabel }}
+ </button>
</div>
</template>