Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Frontend
Commits
56799d9f
Commit
56799d9f
authored
1 year ago
by
Erwan Rouchet
Committed by
Bastien Abadie
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix release notes link
parent
b81cccf5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1500
Fix release notes link
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/App.vue
+4
-3
4 additions, 3 deletions
src/views/App.vue
with
4 additions
and
3 deletions
src/views/App.vue
+
4
−
3
View file @
56799d9f
...
...
@@ -24,7 +24,7 @@
</div>
<router-view
/>
<footer
class=
"footer is-paddingless is-flex is-justify-content-space-between"
>
<span
class=
"footer-item"
>
Version
<a
:href=
"
'https://teklia.com/solutions/arkindex/releases/' + currentRelease
"
target=
"_blank"
>
{{ VERSION }}
</a></span>
<span
class=
"footer-item"
>
Version
<a
:href=
"
releaseNotes
"
target=
"_blank"
>
{{ VERSION }}
</a></span>
<span
class=
"footer-item"
>
Built by
<a
href=
"https://teklia.com"
target=
"_blank"
>
Teklia
</a></span>
<span
class=
"is-inline-flex"
>
<DoorBell
class=
"footer-item mb-0"
v-if=
"hasFeature('doorbell')"
/>
...
...
@@ -87,8 +87,9 @@ export default {
// Prevent displaying the notification to specific pages
return
[
'
home
'
,
'
login
'
,
'
register
'
].
includes
(
this
.
$route
.
name
)
},
currentRelease
()
{
return
VERSION
.
match
(
/
\d
+
\.\d
+
\.\d
+/g
)[
0
].
replace
(
/
\.
/g
,
'
-
'
)
releaseNotes
()
{
const
versionNumber
=
VERSION
.
match
(
/
\d
+
\.\d
+
\.\d
+/g
)[
0
].
replace
(
/
\.
/g
,
''
)
return
`https://teklia.com/our-solutions/arkindex/releases/arkindex-release-
${
versionNumber
}
/`
}
},
methods
:
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment