fixing time spans.
This commit is contained in:
parent
4f90a9eedb
commit
9490cac8e5
|
@ -38,6 +38,7 @@
|
|||
"ng2-charts": "^2.3.0",
|
||||
"ngx-dropzone": "^3.1.0",
|
||||
"ngx-highlightjs": "^7.0.1",
|
||||
"ngx-moment": "^6.0.2",
|
||||
"observable-webworker": "^4.0.1",
|
||||
"pouchdb": "^7.3.0",
|
||||
"pouchdb-authentication": "^1.1.3",
|
||||
|
|
|
@ -24,6 +24,7 @@ import {Router} from '@angular/router';
|
|||
import { SourceDetailComponent } from './pages/source-detail/source-detail.component';
|
||||
import { HighlightModule, HIGHLIGHT_OPTIONS } from 'ngx-highlightjs';
|
||||
import {AuthInterceptorService} from './services/auth-interceptor.service';
|
||||
import { MomentModule } from 'ngx-moment';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
|
@ -47,7 +48,8 @@ import {AuthInterceptorService} from './services/auth-interceptor.service';
|
|||
NgbModule,
|
||||
ChartsModule,
|
||||
NgxDropzoneModule,
|
||||
HighlightModule
|
||||
HighlightModule,
|
||||
MomentModule
|
||||
],
|
||||
providers: [
|
||||
{
|
||||
|
|
|
@ -155,8 +155,8 @@
|
|||
</div>
|
||||
</td>
|
||||
<td class="align-middle"><p><small class="tx-gray-600">status:</small><br/> {{isActive(source)}}</p></td>
|
||||
<td class="align-middle"><p><small class="tx-gray-600">last updated:</small><br/> {{source.updated_at | date}}</p></td>
|
||||
<td class="align-middle"><p><small class="tx-gray-600">expires:</small><br/> {{source.expires_at}}</p></td>
|
||||
<td class="align-middle"><p><small class="tx-gray-600">last updated:</small><br/> <span [ngbTooltip]="source.updated_at | date">{{source.updated_at | amTimeAgo}}</span></p></td>
|
||||
<td class="align-middle"><p><small class="tx-gray-600">expires:</small><br/> <span [ngbTooltip]="source.expires_at | amFromUnix | date">{{source.expires_at | amFromUnix | amTimeAgo}}</span></p></td>
|
||||
<td class="align-middle"><p><i class="fas fa-chevron-right"></i></td>
|
||||
</tr>
|
||||
|
||||
|
|
|
@ -5850,6 +5850,13 @@ ngx-highlightjs@^7.0.1:
|
|||
highlightjs-line-numbers.js "^2.8.0"
|
||||
tslib "^2.0.0"
|
||||
|
||||
ngx-moment@^6.0.2:
|
||||
version "6.0.2"
|
||||
resolved "https://registry.yarnpkg.com/ngx-moment/-/ngx-moment-6.0.2.tgz#7acba9830746e9c2862d261150f2c8adb20eb4f6"
|
||||
integrity sha512-HUvDyoJPZKLA3tc+GMQqDpVyCVT2SPfEiV7/CGj2Dwwsn//JhhQ8eTr+RzKqBzLysrXkCwlzulVVJaJ5A0FJEA==
|
||||
dependencies:
|
||||
tslib "^2.3.0"
|
||||
|
||||
nice-napi@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/nice-napi/-/nice-napi-1.0.2.tgz#dc0ab5a1eac20ce548802fc5686eaa6bc654927b"
|
||||
|
|
Loading…
Reference in New Issue