Change negative bases download button icon and tooltip

This commit is contained in:
William Buezas 2024-03-05 09:53:46 -03:00
parent 12a470b7d9
commit 87ab080b38
1 changed files with 7 additions and 2 deletions

View File

@ -140,7 +140,9 @@ const downloadCSV = async () => {
<template>
<template v-if="stateStore.isHeaderMounted()">
<Teleport to="#st-actions" v-if="stateStore?.isSubToolbarShown()">
<QBtn color="primary" icon-right="archive" no-caps @click="downloadCSV()" />
<QBtn color="primary" icon-right="download" no-caps @click="downloadCSV()">
<QTooltip>{{ t('Download as CSV') }}</QTooltip>
</QBtn>
</Teleport>
</template>
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
@ -187,4 +189,7 @@ const downloadCSV = async () => {
}
</style>
<i18n></i18n>
<i18n>
es:
Download as CSV: Descargar como CSV
</i18n>