ui: Show label for view console action (#4823)

This commit is contained in:
davidjumani 2021-03-17 17:37:38 +05:30 committed by GitHub
parent 136252d65d
commit 9caa535eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,12 @@
<template>
<span class="row-action-button">
<console :resource="resource" :size="size" v-if="resource && resource.id && dataView" />
<a-tooltip arrowPointAtCenter placement="bottomRight">
<template slot="title">
{{ $t('label.view.console') }}
</template>
<console :resource="resource" :size="size" v-if="resource && resource.id && dataView" />
</a-tooltip>
<a-tooltip
v-for="(action, actionIndex) in actions"
:key="actionIndex"