add user visible note that login history expires
The display variant where no signin history items are present has been made shorter and more appropriate.
This commit is contained in:
parent
5b7a06675f
commit
198058b19a
2 changed files with 18 additions and 13 deletions
|
@ -479,6 +479,7 @@ youHaveNoGroups: "You have no groups"
|
|||
joinOrCreateGroup: "Get invited to a group or create your own."
|
||||
noHistory: "No history available"
|
||||
signinHistory: "Login history"
|
||||
signinHistoryExpires: "Data about past login attempts is automatically deleted after 60 days to comply with privacy regulations."
|
||||
disableAnimatedMfm: "Disable MFM with animation"
|
||||
doing: "Processing..."
|
||||
category: "Category"
|
||||
|
|
|
@ -12,20 +12,24 @@
|
|||
|
||||
<FormSection>
|
||||
<template #label>{{ i18n.ts.signinHistory }}</template>
|
||||
<MkPagination :pagination="pagination">
|
||||
<template #default="{items}">
|
||||
<div>
|
||||
<div v-for="item in items" :key="item.id" v-panel class="timnmucd">
|
||||
<header>
|
||||
<i v-if="item.success" class="fas fa-check icon succ"></i>
|
||||
<i v-else class="fas fa-times-circle icon fail"></i>
|
||||
<code class="ip _monospace">{{ item.ip }}</code>
|
||||
<MkTime :time="item.createdAt" class="time"/>
|
||||
</header>
|
||||
<FormSlot>
|
||||
<MkPagination :pagination="pagination">
|
||||
<template #default="{items}">
|
||||
<div>
|
||||
<div v-for="item in items" :key="item.id" v-panel class="timnmucd">
|
||||
<header>
|
||||
<i v-if="item.success" class="fas fa-check icon succ"></i>
|
||||
<i v-else class="fas fa-times-circle icon fail"></i>
|
||||
<code class="ip _monospace">{{ item.ip }}</code>
|
||||
<MkTime :time="item.createdAt" class="time"/>
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</MkPagination>
|
||||
</template>
|
||||
<template #empty>{{ i18n.ts.noMoreHistory }}</template>
|
||||
</MkPagination>
|
||||
<template #caption>{{ i18n.ts.signinHistoryExpires }}</template>
|
||||
</FormSlot>
|
||||
</FormSection>
|
||||
|
||||
<FormSection>
|
||||
|
|
Loading…
Reference in a new issue