Skip to content

Commit

Permalink
fix: 🐛 Beta message no longer shows on main releases
Browse files Browse the repository at this point in the history
  • Loading branch information
JamsRepos committed May 4, 2024
1 parent 9235de4 commit 819223e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/wizarr-frontend/src/modules/settings/pages/About.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="space-y-6 md:space-y-3">
<div class="rounded border border-red-500 bg-red-400 bg-opacity-20 py-3 px-4 backdrop-blur">
<div class="rounded border border-red-500 bg-red-400 bg-opacity-20 py-3 px-4 backdrop-blur" v-if="is_beta">
<div class="flex">
<div class="flex-shrink-0 justify-center items-center flex">
<i class="fa-solid fa-lg fa-circle-info text-gray-800 dark:text-gray-100"></i>
Expand Down Expand Up @@ -56,6 +56,7 @@ export default defineComponent({
},
computed: {
...mapState(useServerStore, ["version"]),
...mapState(useServerStore, ["is_beta"]),
},
});
</script>

0 comments on commit 819223e

Please sign in to comment.