summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DataTable.vue
diff options
context:
space:
mode:
authorUdo Walter2019-04-13 15:40:51 +0200
committerUdo Walter2019-04-13 15:40:51 +0200
commit2bbf367543bac4ed61695340b71e349dd0063b56 (patch)
tree550b48a31b53550384894429cb48bb1c83347ae4 /webapp/src/components/DataTable.vue
parent[groups,clients] include config as association (diff)
downloadbas-2bbf367543bac4ed61695340b71e349dd0063b56.tar.gz
bas-2bbf367543bac4ed61695340b71e349dd0063b56.tar.xz
bas-2bbf367543bac4ed61695340b71e349dd0063b56.zip
[datatable] exportButton -> copyButton
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
}