Update AppAbout.vue: Enhance version notification display for stable and development builds

This commit is contained in:
Ralph Slooten
2026-05-10 10:41:38 +12:00
parent 1cabac31ad
commit 8b4c9d1267

View File

@@ -132,8 +132,13 @@ export default {
mailbox.appInfo.LatestVersion
"
>
A new version of Mailpit ({{ mailbox.appInfo.LatestVersion }}) is
available.
<template v-if="isEdgeBuild || mailbox.appInfo.Version == 'dev'">
Latest stable Mailpit ({{ mailbox.appInfo.LatestVersion }}) release
</template>
<template v-else>
A new version of Mailpit ({{ mailbox.appInfo.LatestVersion }}) is
available
</template>
</a>
</div>
</div>