From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 5 Aug 2025 03:47:10 +0000 (-0400) Subject: Chore: add info buttons for core metadata items X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91511b45cdd171b472292774ee4eee50edfe49cd;p=thirdparty%2Fpaperless-ngx.git Chore: add info buttons for core metadata items --- diff --git a/docs/usage.md b/docs/usage.md index 7673a77dd..6f332396d 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -30,6 +30,9 @@ Each document has data fields that you can assign to them: - A _document type_ is used to demarcate the type of a document such as letter, bank statement, invoice, contract, etc. It is used to identify what a document is about. +- The document _storage path_ is the location where the document files + are stored. See [Storage Paths](advanced_usage.md#storage-paths) for + more information. - The _date added_ of a document is the date the document was scanned into paperless. You cannot and should not change this date. - The _date created_ of a document is the date the document was diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.html b/src-ui/src/app/components/manage/management-list/management-list.component.html index 82fd8502c..6375a3667 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.html +++ b/src-ui/src/app/components/manage/management-list/management-list.component.html @@ -1,4 +1,5 @@ - + + diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts index 291a71fa3..7df6cd5a5 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts +++ b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts @@ -164,7 +164,7 @@ describe('ManagementListComponent', () => { const toastInfoSpy = jest.spyOn(toastService, 'showInfo') const reloadSpy = jest.spyOn(component, 'reloadData') - const createButton = fixture.debugElement.queryAll(By.css('button'))[3] + const createButton = fixture.debugElement.queryAll(By.css('button'))[4] createButton.triggerEventHandler('click') expect(modal).not.toBeUndefined() @@ -188,7 +188,7 @@ describe('ManagementListComponent', () => { const toastInfoSpy = jest.spyOn(toastService, 'showInfo') const reloadSpy = jest.spyOn(component, 'reloadData') - const editButton = fixture.debugElement.queryAll(By.css('button'))[6] + const editButton = fixture.debugElement.queryAll(By.css('button'))[7] editButton.triggerEventHandler('click') expect(modal).not.toBeUndefined() @@ -213,7 +213,7 @@ describe('ManagementListComponent', () => { const deleteSpy = jest.spyOn(tagService, 'delete') const reloadSpy = jest.spyOn(component, 'reloadData') - const deleteButton = fixture.debugElement.queryAll(By.css('button'))[7] + const deleteButton = fixture.debugElement.queryAll(By.css('button'))[8] deleteButton.triggerEventHandler('click') expect(modal).not.toBeUndefined() @@ -233,7 +233,7 @@ describe('ManagementListComponent', () => { it('should support quick filter for objects', () => { const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') - const filterButton = fixture.debugElement.queryAll(By.css('button'))[8] + const filterButton = fixture.debugElement.queryAll(By.css('button'))[9] filterButton.triggerEventHandler('click') expect(qfSpy).toHaveBeenCalledWith([ { rule_type: FILTER_HAS_TAGS_ALL, value: tags[0].id.toString() },