InfiniteScroll 3
fix user list send telegram text invited show in profile
This commit is contained in:
@@ -88,7 +88,10 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function condividipag() {
|
||||
return tools.copyStringToClipboard($q, self.location.host + tools.getPathByTable(props.table, myrec.value._id), true)
|
||||
const mystr = self.location.host + tools.getPathByTable(props.table, myrec.value._id)
|
||||
tools.copyStringToClipboard($q, mystr, true)
|
||||
tools.sendMsgTelegramCmd($q, t, shared_consts.MsgTeleg.SHARE_TEXT, false, mystr)
|
||||
return true
|
||||
}
|
||||
|
||||
function showBadge() {
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
</div>
|
||||
<div v-else-if="mycol.name === 'numMaxPeopleHosp'">
|
||||
<div class="text-bacheca">
|
||||
<span class="accom_maxosp">{{tools.getValue(myrec, mycol.field, mycol.subfield) }}</span>{{ t('hosps.numMaxPeopleHosp') }}
|
||||
<span class="accom_maxosp">{{ tools.getValue(myrec, mycol.field, mycol.subfield) }}</span>{{ t('hosps.numMaxPeopleHosp') }}
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="mycol.name === 'dateTimeStart'" class="text-center cal">
|
||||
@@ -105,17 +105,15 @@
|
||||
class="row q-ma-sm q-pa-sm justify-center">
|
||||
<div class="q-ma-sm">
|
||||
<q-btn
|
||||
icon="far fa-file-alt" label="Apri Pagina" color="primary" text-color="white"
|
||||
icon="far fa-file-alt" label="Apri" color="primary" text-color="white"
|
||||
:to="tools.getToByCol(col, table, myrec)"
|
||||
/>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="myrec._id"
|
||||
class="row q-ma-sm q-pa-sm justify-center">
|
||||
<div class="q-ma-sm">
|
||||
<q-btn
|
||||
color="primary" text-color="white" icon="fas fa-copy" label="Condividi Pagina"
|
||||
v-if="myrec._id"
|
||||
text-color="black" icon="fas fa-share-alt"
|
||||
label="Condividi"
|
||||
@click="condividipag"></q-btn>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user