Compare commits

..

No commits in common. '642ec0552e8ce88bfe4ac196bad05122dac9fc15' and 'd8ed85792a08f6221a2fb54d4974959c709c773b' have entirely different histories.

  1. 4
      public/index.html
  2. 1
      src/router/index.js
  3. 6
      src/views/Trackers.vue

4
public/index.html

@ -5,8 +5,8 @@ @@ -5,8 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="stylesheet" href="/ttrack/app.css">
<link rel="manifest" href="/ttrack/manifest.json">
<link rel="stylesheet" href="/app.css">
<link rel="manifest" href="/manifest.json">
<title>TTrack 🕗</title>
</head>
<body>

1
src/router/index.js

@ -39,7 +39,6 @@ const routes = [ @@ -39,7 +39,6 @@ const routes = [
const router = createRouter({
history: createWebHashHistory(),
base: '/ttrack/',
routes
})

6
src/views/Trackers.vue

@ -16,7 +16,9 @@ @@ -16,7 +16,9 @@
<div class="row">
<div v-if="tracker.tracking === true">
<div class="text-danger font-weight-bolder float-end tracker-time-info">
<div class="spinner-grow spinner-grow-sm" role="status"></div>
<div class="spinner-grow spinner-grow-sm" role="status">
<span class="sr-only">Tracking...</span>
</div>
Tracking (<i class="fas fa-play"></i> {{ getTrackingStartTime(tracker) }})
</div>
</div>
@ -376,4 +378,4 @@ export default { @@ -376,4 +378,4 @@ export default {
color: lightgray;
}
</style>
</style>
Loading…
Cancel
Save