summaryrefslogtreecommitdiff
path: root/src/components/Global/TableRowAction.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/TableRowAction.vue')
-rw-r--r--src/components/Global/TableRowAction.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Global/TableRowAction.vue b/src/components/Global/TableRowAction.vue
index da936b6d..d41fd50c 100644
--- a/src/components/Global/TableRowAction.vue
+++ b/src/components/Global/TableRowAction.vue
@@ -1,13 +1,13 @@
<template>
<b-button
- :aria-label="title ? title : value"
+ :aria-label="title"
:title="title"
variant="link"
:disabled="!enabled"
@click="$emit('click:tableAction', value)"
>
<slot name="icon">
- {{ value }}
+ {{ title }}
</slot>
</b-button>
</template>