mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Tweak: add name to management toasts
This commit is contained in:
parent
a499905605
commit
b274665e21
@ -8528,8 +8528,8 @@
|
|||||||
<context context-type="linenumber">183</context>
|
<context context-type="linenumber">183</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2541368547549828690" datatype="html">
|
<trans-unit id="4835942264662718903" datatype="html">
|
||||||
<source>Successfully updated <x id="PH" equiv-text="this.typeName"/>.</source>
|
<source>Successfully updated <x id="PH" equiv-text="this.typeName"/> "<x id="PH_1" equiv-text="object.name"/>".</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/manage/management-list/management-list.component.ts</context>
|
<context context-type="sourcefile">src/app/components/manage/management-list/management-list.component.ts</context>
|
||||||
<context context-type="linenumber">198</context>
|
<context context-type="linenumber">198</context>
|
||||||
|
@ -21,7 +21,6 @@ import {
|
|||||||
MATCHING_ALGORITHMS,
|
MATCHING_ALGORITHMS,
|
||||||
MatchingModel,
|
MatchingModel,
|
||||||
} from 'src/app/data/matching-model'
|
} from 'src/app/data/matching-model'
|
||||||
import { ObjectWithId } from 'src/app/data/object-with-id'
|
|
||||||
import { ObjectWithPermissions } from 'src/app/data/object-with-permissions'
|
import { ObjectWithPermissions } from 'src/app/data/object-with-permissions'
|
||||||
import {
|
import {
|
||||||
SortableDirective,
|
SortableDirective,
|
||||||
@ -56,7 +55,7 @@ export interface ManagementListColumn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Directive()
|
@Directive()
|
||||||
export abstract class ManagementListComponent<T extends ObjectWithId>
|
export abstract class ManagementListComponent<T extends MatchingModel>
|
||||||
extends LoadingComponentWithPermissions
|
extends LoadingComponentWithPermissions
|
||||||
implements OnInit, OnDestroy
|
implements OnInit, OnDestroy
|
||||||
{
|
{
|
||||||
@ -195,7 +194,7 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
|
|||||||
activeModal.componentInstance.succeeded.subscribe(() => {
|
activeModal.componentInstance.succeeded.subscribe(() => {
|
||||||
this.reloadData()
|
this.reloadData()
|
||||||
this.toastService.showInfo(
|
this.toastService.showInfo(
|
||||||
$localize`Successfully updated ${this.typeName}.`
|
$localize`Successfully updated ${this.typeName} "${object.name}".`
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
activeModal.componentInstance.failed.subscribe((e) => {
|
activeModal.componentInstance.failed.subscribe((e) => {
|
||||||
@ -208,7 +207,7 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
|
|||||||
|
|
||||||
abstract getDeleteMessage(object: T)
|
abstract getDeleteMessage(object: T)
|
||||||
|
|
||||||
filterDocuments(object: ObjectWithId) {
|
filterDocuments(object: MatchingModel) {
|
||||||
this.documentListViewService.quickFilter([
|
this.documentListViewService.quickFilter([
|
||||||
{ rule_type: this.filterRuleType, value: object.id.toString() },
|
{ rule_type: this.filterRuleType, value: object.id.toString() },
|
||||||
])
|
])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user