diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 6a8a18a12..f51e4056e 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -25,6 +25,7 @@ "bootstrap": "^5.3.2", "file-saver": "^2.0.5", "mime-names": "^1.0.0", + "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", "ngx-cookie-service": "^17.0.1", "ngx-file-drop": "^16.0.0", @@ -13850,6 +13851,22 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, + "node_modules/ngx-bootstrap-icons": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/ngx-bootstrap-icons/-/ngx-bootstrap-icons-1.9.3.tgz", + "integrity": "sha512-UsFqJ/cn0u5W39hVMIDbm+ze1dCF9fDV839scqeimi70Efcmg41zOx6GgR6i2gWAVFR0OBso1cdqb4E75XhTSw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": ">= 16.18.1", + "npm": ">= 8.11.0" + }, + "peerDependencies": { + "@angular/common": ">= 13.3.8", + "@angular/core": ">= 13.3.8" + } + }, "node_modules/ngx-color": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/ngx-color/-/ngx-color-9.0.0.tgz", diff --git a/src-ui/package.json b/src-ui/package.json index 904c2b9a0..baefa35c3 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -27,6 +27,7 @@ "bootstrap": "^5.3.2", "file-saver": "^2.0.5", "mime-names": "^1.0.0", + "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", "ngx-cookie-service": "^17.0.1", "ngx-file-drop": "^16.0.0", diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index a97897c36..d9a2ea28f 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -111,6 +111,170 @@ import { PreviewPopupComponent } from './components/common/preview-popup/preview import { SwitchComponent } from './components/common/input/switch/switch.component' import { ConfigComponent } from './components/admin/config/config.component' import { FileComponent } from './components/common/input/file/file.component' +import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' +import { + archive, + arrowCounterclockwise, + arrowDown, + arrowLeft, + arrowRepeat, + arrowRight, + arrowRightShort, + arrowUpRight, + asterisk, + boxArrowUp, + boxArrowUpRight, + boxes, + calendar, + calendarEvent, + caretDown, + caretUp, + chatLeftText, + check, + check2All, + checkAll, + checkLg, + chevronDoubleLeft, + chevronDoubleRight, + clipboardCheckFill, + clipboardFill, + dash, + diagram3, + dice5, + doorOpen, + download, + envelope, + exclamationTriangle, + eye, + fileEarmark, + fileEarmarkCheck, + fileEarmarkFill, + files, + fileText, + filter, + folder, + folderFill, + funnel, + gear, + grid, + gripVertical, + hash, + hddStack, + house, + infoCircle, + link, + listTask, + listUl, + pencil, + people, + peopleFill, + person, + personCircle, + personFill, + personFillLock, + personLock, + plus, + plusCircle, + questionCircle, + search, + slashCircle, + sliders2Vertical, + sortAlphaDown, + sortAlphaUpAlt, + tagFill, + tags, + textIndentLeft, + textLeft, + threeDots, + threeDotsVertical, + trash, + uiRadios, + upcScan, + x, + xLg, +} from 'ngx-bootstrap-icons' + +const icons = { + archive, + arrowCounterclockwise, + arrowDown, + arrowLeft, + arrowRepeat, + arrowRight, + arrowRightShort, + arrowUpRight, + asterisk, + boxArrowUp, + boxArrowUpRight, + boxes, + calendar, + calendarEvent, + caretDown, + caretUp, + chatLeftText, + check, + check2All, + checkAll, + checkLg, + chevronDoubleLeft, + chevronDoubleRight, + clipboardCheckFill, + clipboardFill, + dash, + diagram3, + dice5, + doorOpen, + download, + envelope, + exclamationTriangle, + eye, + fileEarmark, + fileEarmarkCheck, + fileEarmarkFill, + files, + fileText, + filter, + folder, + folderFill, + funnel, + gear, + grid, + gripVertical, + hash, + hddStack, + house, + infoCircle, + link, + listTask, + listUl, + pencil, + people, + peopleFill, + person, + personCircle, + personFill, + personFillLock, + personLock, + plus, + plusCircle, + questionCircle, + search, + slashCircle, + sliders2Vertical, + sortAlphaDown, + sortAlphaUpAlt, + tagFill, + tags, + textIndentLeft, + textLeft, + threeDots, + threeDotsVertical, + trash, + uiRadios, + upcScan, + x, + xLg, +} import localeAf from '@angular/common/locales/af' import localeAr from '@angular/common/locales/ar' @@ -282,6 +446,7 @@ function initializeApp(settings: SettingsService) { ColorSliderModule, TourNgBootstrapModule, DragDropModule, + NgxBootstrapIconsModule.pick(icons), ], providers: [ { diff --git a/src-ui/src/app/components/admin/config/config.component.html b/src-ui/src/app/components/admin/config/config.component.html index 53beb60e0..d1edf49e6 100644 --- a/src-ui/src/app/components/admin/config/config.component.html +++ b/src-ui/src/app/components/admin/config/config.component.html @@ -17,9 +17,7 @@
{{option.title}} - - - +
diff --git a/src-ui/src/app/components/admin/settings/settings.component.html b/src-ui/src/app/components/admin/settings/settings.component.html index 07b062a00..219c520c9 100644 --- a/src-ui/src/app/components/admin/settings/settings.component.html +++ b/src-ui/src/app/components/admin/settings/settings.component.html @@ -2,9 +2,7 @@ Open Django Admin - - - + @@ -135,9 +133,7 @@
diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.html b/src-ui/src/app/components/admin/tasks/tasks.component.html index 6531f146a..e77940f5f 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.html +++ b/src-ui/src/app/components/admin/tasks/tasks.component.html @@ -1,14 +1,10 @@
@@ -75,24 +71,18 @@ }
@if (task.related_document) { } diff --git a/src-ui/src/app/components/admin/users-groups/users-groups.component.html b/src-ui/src/app/components/admin/users-groups/users-groups.component.html index ce794f873..9e4ef9839 100644 --- a/src-ui/src/app/components/admin/users-groups/users-groups.component.html +++ b/src-ui/src/app/components/admin/users-groups/users-groups.component.html @@ -5,9 +5,7 @@

Users

@@ -29,14 +27,10 @@
@@ -50,9 +44,7 @@

Groups

@@ -75,14 +67,10 @@
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index ba21c8bac..a656ffbae 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -27,17 +27,13 @@
- - - + @if (!searchFieldEmpty) { }
@@ -48,9 +44,7 @@ {{this.settingsService.displayName}} - - - + @@ -91,13 +77,11 @@ [ngClass]="slimSidebarEnabled ? 'slim' : 'col-md-3 col-lg-2 col-xxxl-1'" [class.animating]="slimSidebarAnimating" [ngbCollapse]="isMenuCollapsed"> diff --git a/src-ui/src/app/components/common/clearable-badge/clearable-badge.component.html b/src-ui/src/app/components/common/clearable-badge/clearable-badge.component.html index 6425c63e5..4d31411aa 100644 --- a/src-ui/src/app/components/common/clearable-badge/clearable-badge.component.html +++ b/src-ui/src/app/components/common/clearable-badge/clearable-badge.component.html @@ -1,15 +1,11 @@ @if (active) { } diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html index e0d26bfc3..1417c04b4 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -1,8 +1,6 @@
@@ -20,14 +18,10 @@ diff --git a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.html b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.html index f3ac1ed77..88f100d5c 100644 --- a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.html +++ b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.html @@ -9,9 +9,7 @@
@@ -57,9 +51,7 @@
Before
@if (dateBefore) { - - - + Clear } @@ -69,9 +61,7 @@
diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html index 76d788e59..f9862b2b3 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -27,9 +27,7 @@

Trigger Workflow On:

@@ -42,9 +40,7 @@ ID: {{trigger.id}} } @@ -71,9 +67,7 @@

Apply Actions:

@@ -86,9 +80,7 @@ ID: {{action.id}} } diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html index 2e082cff3..e83f9759c 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -1,8 +1,6 @@
} @if (!editing && manyToOne) { diff --git a/src-ui/src/app/components/common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component.html b/src-ui/src/app/components/common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component.html index 2ab6794a5..a8260cccb 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component.html +++ b/src-ui/src/app/components/common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component.html @@ -1,19 +1,13 @@ }
diff --git a/src-ui/src/app/components/common/input/color/color.component.html b/src-ui/src/app/components/common/input/color/color.component.html index 100297a9a..abc4e69eb 100644 --- a/src-ui/src/app/components/common/input/color/color.component.html +++ b/src-ui/src/app/components/common/input/color/color.component.html @@ -16,10 +16,7 @@
diff --git a/src-ui/src/app/components/common/input/date/date.component.html b/src-ui/src/app/components/common/input/date/date.component.html index 2a7984a17..5cf0fc47f 100644 --- a/src-ui/src/app/components/common/input/date/date.component.html +++ b/src-ui/src/app/components/common/input/date/date.component.html @@ -4,9 +4,7 @@ @if (removable) { }
@@ -16,15 +14,11 @@ (dateSelect)="onChange(value)" (change)="onChange(value)" (keypress)="onKeyPress($event)" (paste)="onPaste($event)" name="dp" [(ngModel)]="value" ngbDatepicker #datePicker="ngbDatepicker" #datePickerContent="ngModel" [disabled]="disabled"> @if (showFilter) { }
diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.html b/src-ui/src/app/components/common/input/document-link/document-link.component.html index 8e4074035..e1be7ce32 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.html +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.html @@ -6,9 +6,7 @@ } @if (removable) { }
@@ -29,13 +27,9 @@ (change)="onChange(selectedDocuments)"> diff --git a/src-ui/src/app/components/common/input/file/file.component.html b/src-ui/src/app/components/common/input/file/file.component.html index 9ad82a99c..a4ebcc2be 100644 --- a/src-ui/src/app/components/common/input/file/file.component.html +++ b/src-ui/src/app/components/common/input/file/file.component.html @@ -6,9 +6,7 @@ } @if (removable) { } @@ -20,9 +18,7 @@
{{filename}}
} diff --git a/src-ui/src/app/components/common/input/number/number.component.html b/src-ui/src/app/components/common/input/number/number.component.html index c9baf38a1..19e368847 100644 --- a/src-ui/src/app/components/common/input/number/number.component.html +++ b/src-ui/src/app/components/common/input/number/number.component.html @@ -6,9 +6,7 @@ } @if (removable) { } diff --git a/src-ui/src/app/components/common/input/password/password.component.html b/src-ui/src/app/components/common/input/password/password.component.html index b94750f94..1a70ff4f6 100644 --- a/src-ui/src/app/components/common/input/password/password.component.html +++ b/src-ui/src/app/components/common/input/password/password.component.html @@ -4,9 +4,7 @@ @if (showReveal) { } diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html index 617799a72..e150dee85 100644 --- a/src-ui/src/app/components/common/input/select/select.component.html +++ b/src-ui/src/app/components/common/input/select/select.component.html @@ -6,9 +6,7 @@ } @if (removable) { } @@ -40,16 +38,12 @@ @if (allowCreateNew) { } @if (showFilter) { } diff --git a/src-ui/src/app/components/common/input/switch/switch.component.html b/src-ui/src/app/components/common/input/switch/switch.component.html index e0b63c5f7..db5c1ec0c 100644 --- a/src-ui/src/app/components/common/input/switch/switch.component.html +++ b/src-ui/src/app/components/common/input/switch/switch.component.html @@ -5,16 +5,12 @@ @if (removable) { } @@ -26,9 +22,7 @@ } diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html index c4207fc61..dfd9c3419 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.html +++ b/src-ui/src/app/components/common/input/tags/tags.component.html @@ -18,9 +18,7 @@ - - - + @if (item.id && tags) { } @@ -36,16 +34,12 @@ @if (allowCreate) { } @if (showFilter) { } diff --git a/src-ui/src/app/components/common/input/text/text.component.html b/src-ui/src/app/components/common/input/text/text.component.html index 4169d09db..c4b6b1d4b 100644 --- a/src-ui/src/app/components/common/input/text/text.component.html +++ b/src-ui/src/app/components/common/input/text/text.component.html @@ -6,9 +6,7 @@ } @if (removable) { } diff --git a/src-ui/src/app/components/common/input/url/url.component.html b/src-ui/src/app/components/common/input/url/url.component.html index cca0ee259..dfc0b70d7 100644 --- a/src-ui/src/app/components/common/input/url/url.component.html +++ b/src-ui/src/app/components/common/input/url/url.component.html @@ -4,9 +4,7 @@ @if (removable) { } @@ -14,9 +12,7 @@
- - - +
{{error}} diff --git a/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html b/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html index 4573d916b..1bac613f0 100644 --- a/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html +++ b/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html @@ -1,8 +1,6 @@
@@ -11,9 +9,7 @@
Copied! diff --git a/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.html b/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.html index 2dbd29308..1bf0e693d 100644 --- a/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.html +++ b/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.html @@ -1,8 +1,6 @@
Copied! @@ -66,9 +59,7 @@
} @if (!loading) { - - - + } Create diff --git a/src-ui/src/app/components/common/toasts/toasts.component.html b/src-ui/src/app/components/common/toasts/toasts.component.html index 1a671c4e9..81b9ca9bf 100644 --- a/src-ui/src/app/components/common/toasts/toasts.component.html +++ b/src-ui/src/app/components/common/toasts/toasts.component.html @@ -8,14 +8,12 @@ {{ toast.delayRemaining / 1000 | number: '1.0-0' }} seconds
- - @if (!toast.error) { - - } - @if (toast.error) { - - } - + @if (!toast.error) { + + } + @if (toast.error) { + + }

{{toast.content}}

@if (toast.error) { @@ -34,25 +32,24 @@
-
+ @if (!copied) { + + } + @if (copied) { + + } + > Copy Raw Error +
- - } - @if (toast.action) { -

- } -
- +
+ + } + @if (toast.action) { +

+ }
- - } + +
+ +} diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html index 9102800f4..196ad8fda 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -39,17 +39,13 @@ - - - + - - - + diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html index f178c2d9f..fe6642aa9 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -14,10 +14,7 @@ @if (getStatusCompleted().length > 0) { Dismiss completed - - - - + } @@ -64,9 +61,7 @@ @if (status.documentId) { } diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html index ddf412566..41eb0d1a0 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -4,9 +4,7 @@
@if (draggable) {
- - - +
}
{{title}}
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index eaf7d298a..f494d09ec 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -19,16 +19,12 @@ }
- - - Download + Download @if (metadata?.has_archive_version) { @@ -43,22 +39,16 @@
@@ -84,19 +74,13 @@
diff --git a/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html b/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html index 17a31f0cf..634444ccc 100644 --- a/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html +++ b/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html @@ -2,14 +2,10 @@ {{title}} diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html index 49920c0b5..79ff6af07 100644 --- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html +++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1,23 +1,17 @@
@@ -73,16 +67,12 @@
@@ -94,9 +84,7 @@
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index ea2327cdd..3062c8617 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -36,9 +36,7 @@ } @for (highlight of searchNoteHighlights; track highlight) { - - - + } @@ -51,29 +49,21 @@
@@ -81,35 +71,27 @@
@if (notesEnabled && document.notes.length) { } @if (document.document_type) { } @if (document.storage_path) { } @if (document.archive_serial_number | isNumber) {
- + #{{document.archive_serial_number}}
} @@ -121,24 +103,18 @@
- + {{document.created_date | customDate:'mediumDate'}}
@if (document.owner && document.owner !== settingsService.currentUser.id) {
- + {{document.owner | username}}
} @if (document.is_shared_by_requester) {
- + Shared
} diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 15290f672..9864af55a 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -25,9 +25,7 @@ @if (notesEnabled && document.notes.length) { - + {{document.notes.length}} } @@ -45,18 +43,14 @@ @if (document.document_type) { } @if (document.storage_path) { } @@ -69,33 +63,25 @@
- + {{document.created_date | customDate:'mediumDate'}}
@if (document.archive_serial_number | isNumber) {
- + #{{document.archive_serial_number}}
} @if (document.owner && document.owner !== settingsService.currentUser.id) {
- + {{document.owner | username}}
} @if (document.is_shared_by_requester) {
- + Shared
} @@ -103,26 +89,18 @@ diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index 64cac2d90..6b1d6481b 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -2,9 +2,7 @@
@@ -16,21 +14,15 @@
@@ -40,15 +32,11 @@
@@ -116,9 +104,7 @@ } @if (!list.isReloading && isFiltered) { }
@@ -246,9 +232,7 @@ @if (d.notes.length) { - + {{d.notes.length}} } diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html index 6fec313f8..8350f2264 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html @@ -19,9 +19,7 @@ } @if (_textFilter) { } @@ -87,9 +85,7 @@
diff --git a/src-ui/src/app/components/document-notes/document-notes.component.html b/src-ui/src/app/components/document-notes/document-notes.component.html index b759e6b66..cf52b39b3 100644 --- a/src-ui/src/app/components/document-notes/document-notes.component.html +++ b/src-ui/src/app/components/document-notes/document-notes.component.html @@ -23,9 +23,7 @@ diff --git a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html index dc6628a6a..a3db14169 100644 --- a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html +++ b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html @@ -1,8 +1,6 @@ @@ -25,14 +23,10 @@
diff --git a/src-ui/src/app/components/manage/mail/mail.component.html b/src-ui/src/app/components/manage/mail/mail.component.html index b3c93d794..14728c1fc 100644 --- a/src-ui/src/app/components/manage/mail/mail.component.html +++ b/src-ui/src/app/components/manage/mail/mail.component.html @@ -5,9 +5,7 @@

Mail accounts

@@ -28,19 +26,13 @@
@@ -58,9 +50,7 @@

Mail rules

@@ -81,19 +71,13 @@
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 ca9ec4750..9f597d6ac 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,18 +1,12 @@ @@ -80,9 +74,7 @@
@@ -93,19 +85,13 @@
diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.html b/src-ui/src/app/components/manage/workflows/workflows.component.html index f4fb3b328..04e38b3f4 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.html +++ b/src-ui/src/app/components/manage/workflows/workflows.component.html @@ -1,8 +1,6 @@ @@ -29,14 +27,10 @@
diff --git a/src-ui/src/app/components/not-found/not-found.component.html b/src-ui/src/app/components/not-found/not-found.component.html index 92ac85f39..9c8031bda 100644 --- a/src-ui/src/app/components/not-found/not-found.component.html +++ b/src-ui/src/app/components/not-found/not-found.component.html @@ -6,9 +6,7 @@

Not Found

- - - + Go to Dashboard