Skip to content

Commit

Permalink
add version name
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Jul 30, 2023
1 parent 8b1ea0c commit 9917fd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/base/AppFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div class="col-md-4 text-center">
<div class="text-subtitle-1">
Elasticvue {{ version }} |
Elasticvue {{ version }}-{{ VERSION_NAME }} |
<a href="https://github.com/cars10/elasticvue/blob/master/CHANGELOG.md" rel="nofollow" target="_blank"
class="decoration-none">
{{ t('base.app_footer.changelog') }}
Expand All @@ -30,6 +30,7 @@
import LanguageSwitcher from './LanguageSwitcher.vue'
import ThemeSwitcher from './ThemeSwitcher.vue'
import { useTranslation } from '../../composables/i18n.ts'
import { VERSION_NAME } from '../../consts.ts'
const t = useTranslation()
Expand Down
1 change: 1 addition & 0 deletions src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export const VERSION_NAME = 'beta-2'
export const SUPPORTED_MAJOR_VERSIONS = ['6', '7', '8']
export const REQUEST_DEFAULT_HEADERS = {
Accept: 'application/json',
Expand Down

0 comments on commit 9917fd7

Please sign in to comment.