Compare commits
2 Commits
b1cb9288df
...
dbd5715c13
Author | SHA1 | Date |
---|---|---|
|
dbd5715c13 | |
|
9a634f08a5 |
|
@ -69,21 +69,11 @@ async function redirect() {
|
|||
<QSpace />
|
||||
<div class="q-pl-sm q-gutter-sm row items-center no-wrap">
|
||||
<div id="actions-prepend"></div>
|
||||
<QBtn
|
||||
@click="redirect(this.$route.params.id)"
|
||||
icon="open_in_new"
|
||||
label="Ir a SALIX"
|
||||
></QBtn>
|
||||
<QBtn @click="redirect($route.params.id)" icon="open_in_new"> </QBtn>
|
||||
<QBtn id="pinnedModules" icon="apps" flat dense rounded>
|
||||
<QTooltip bottom>
|
||||
{{ t('globals.pinnedModules') }}
|
||||
</QTooltip>
|
||||
<PinnedModules>
|
||||
<QBtn
|
||||
@click="redirect(this.$route.params.id)"
|
||||
icon="open_in_new"
|
||||
></QBtn>
|
||||
</PinnedModules>
|
||||
</QBtn>
|
||||
<QBtn rounded dense flat no-wrap id="user">
|
||||
<QAvatar size="lg">
|
||||
|
|
|
@ -36,7 +36,9 @@ const pinnedModules = computed(() => navigation.getPinnedModules());
|
|||
<div class="text-grey-5" v-if="pinnedModules.length === 0">
|
||||
{{ t('pinnedInfo') }}
|
||||
</div>
|
||||
<template v-if="pinnedModules.length">
|
||||
<QBtn @click="redirect($route.params.id)" icon="open_in_new">
|
||||
</QBtn>
|
||||
<template v-if="pinnedModules.length >= 0">
|
||||
<div
|
||||
v-for="item of pinnedModules"
|
||||
:key="item.title"
|
||||
|
@ -90,7 +92,7 @@ const pinnedModules = computed(() => navigation.getPinnedModules());
|
|||
|
||||
<i18n>
|
||||
{
|
||||
"en": {
|
||||
"en": {
|
||||
"pinnedInfo": "Your pinned modules will be shown here..."
|
||||
},
|
||||
"es": {
|
||||
|
|
Loading…
Reference in New Issue