Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
com.akaver.sportmap
SportMap-aurelia
Commits
46efdbf4
Commit
46efdbf4
authored
Apr 21, 2020
by
Andres Käver
Browse files
videw
parent
359e6b7a
Pipeline
#790
passed with stages
in 1 minute and 14 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/domain/IGpsSession.ts
View file @
46efdbf4
...
...
@@ -3,4 +3,6 @@ export interface IGpsSession {
name
:
string
;
description
:
string
;
recordedAt
:
string
;
gpsLocationsCount
:
number
;
userFirstLastName
:
string
;
}
src/views/home/index.html
View file @
46efdbf4
...
...
@@ -5,7 +5,7 @@
<select
value.bind=
"selectedGpsSession"
class=
"form-control"
id=
"sessionSelect"
>
<option
model.bind=
"null"
>
Choose...
</option>
<option
repeat.for=
"gpsSession of gpsSessions"
model.bind=
"gpsSession"
>
${gpsSession.
name
} - ${gpsSession.recordedAt}
${gpsSession.
userFirstLastName} - ${gpsSession.Name} - Locations: ${gpsSession.gpsLocationsCount
} - ${gpsSession.recordedAt}
</option>
</select>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment