summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DataTable.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/DataTable.vue')
-rw-r--r--webapp/src/components/DataTable.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/src/components/DataTable.vue b/webapp/src/components/DataTable.vue
index 61c9d6d..b3da534 100644
--- a/webapp/src/components/DataTable.vue
+++ b/webapp/src/components/DataTable.vue
@@ -143,7 +143,7 @@
arrow_upward
</v-icon>
</div>
- <div v-if="exportButton" class="copy-button">
+ <div v-if="copyButton" class="copy-button">
<v-btn icon @click="copyDialog = !copyDialog"><v-icon style="opacity: 0.3;">file_copy</v-icon></v-btn>
</div>
</div>
@@ -172,6 +172,7 @@
</template>
</RecycleScroller>
<v-dialog
+ v-if="copyButton"
v-model="copyDialog"
scrollable
:max-width="300"
@@ -258,7 +259,7 @@ export default {
type: Boolean,
default: false
},
- exportButton: {
+ copyButton: {
type: Boolean,
default: false
}