mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-07-09 21:45:11 +00:00
Ok first real chunk of zoneless pngx
document list dashboard / widget frame stats
This commit is contained in:
@@ -5,7 +5,7 @@ import {
|
||||
DragDropModule,
|
||||
moveItemInArray,
|
||||
} from '@angular/cdk/drag-drop'
|
||||
import { Component, inject } from '@angular/core'
|
||||
import { Component, inject, signal } from '@angular/core'
|
||||
import { RouterModule } from '@angular/router'
|
||||
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
||||
import { TourNgBootstrap, TourService } from 'ngx-ui-tour-ng-bootstrap'
|
||||
@@ -47,7 +47,15 @@ export class DashboardComponent extends ComponentWithPermissions {
|
||||
private tourService = inject(TourService)
|
||||
private toastService = inject(ToastService)
|
||||
|
||||
public dashboardViews: SavedView[] = []
|
||||
private dashboardViewsSignal = signal<SavedView[]>([])
|
||||
|
||||
get dashboardViews(): SavedView[] {
|
||||
return this.dashboardViewsSignal()
|
||||
}
|
||||
|
||||
set dashboardViews(value: SavedView[]) {
|
||||
this.dashboardViewsSignal.set(value)
|
||||
}
|
||||
constructor() {
|
||||
super()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user