Skip to content

Commit 2966211

Browse files
committed
fix url format for ScreenVersionSpecific
1 parent 2f31de4 commit 2966211

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

src/components/ScreenVersionSpecific.vue

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,12 @@ export default defineComponent({
146146
const helpData = {
147147
commit: {
148148
title: 'commit',
149-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#commit',
149+
url: [
150+
{
151+
text: 'Click here to see the documentation for commit.',
152+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#commit'
153+
}
154+
],
150155
description: 'The commit hash or revision number of the software version.',
151156
examples: [
152157
'1ff847d81f29c45a3a1a5ce73d38e45c2f319bba',
@@ -155,7 +160,12 @@ export default defineComponent({
155160
},
156161
version: {
157162
title: 'version',
158-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#version',
163+
url: [
164+
{
165+
text: 'Click here to see the documentation for version.',
166+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#version'
167+
}
168+
],
159169
description: 'The version of the software or dataset.',
160170
examples: [
161171
'1.2.0',
@@ -165,7 +175,12 @@ export default defineComponent({
165175
},
166176
dateReleased: {
167177
title: 'date-released',
168-
url: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#date-released',
178+
url: [
179+
{
180+
text: 'Click here to see the documentation for date-released.',
181+
link: 'https://github.com/citation-file-format/citation-file-format/blob/1.2.0/schema-guide.md#date-released'
182+
}
183+
],
169184
description: 'The date the work has been released.'
170185
}
171186
}

0 commit comments

Comments
 (0)