Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Full Changelog: [https://github.com/netgrif/components/commits/v6.4.2](https://g

- [NAE-2100] Case view export button as NAE feature
- [NAE-2393] Validation property on set data event
- [NAE-2401] Timestamp of case dataSet change
Comment thread
Kovy95 marked this conversation as resolved.

## [6.4.1](https://github.com/netgrif/components/releases/tag/v6.4.1) (2025-03-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export class PanelsComponent implements OnInit {
constructor() {
this.case_ = {
lastModified: null,
lastModifiedDataSet: undefined,
visualId: 'ABC-123456789',
petriNetObjectId: null,
processIdentifier: 'net',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ describe('PermissionService', () => {
color: 'color',
creationDate: [],
lastModified: [],
lastModifiedDataSet: [],
visualId: '',
resetArcTokens: {},
processIdentifier: '',
Expand Down Expand Up @@ -235,6 +236,7 @@ describe('PermissionService', () => {
color: 'color',
creationDate: [],
lastModified: [],
lastModifiedDataSet: [],
visualId: '',
resetArcTokens: {},
processIdentifier: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ class TestWrapperComponent {
color: 'color',
creationDate: [],
lastModified: [],
lastModifiedDataSet: [],
visualId: '',
resetArcTokens: {},
processIdentifier: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export interface Case {
* ]
*/
lastModified: NaeDate;
lastModifiedDataSet: NaeDate | undefined;
/**
* **Example:** PER-1669965980
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class MockCaseResourceService {
content: [
{
lastModified: [2022, 11, 28],
lastModifiedDataSet: [],
visualId: 'TST-123548',
petriNetObjectId: undefined,
processIdentifier: 'test-process',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export function createMockCase(stringId = 'stringId',
petriNetId = 'petriNetId'): Case {
return {
lastModified: [],
lastModifiedDataSet: [],
visualId: '',
petriNetObjectId: {
timestamp: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class TestComponent {
creationDate: undefined,
icon: '',
lastModified: undefined,
lastModifiedDataSet: undefined,
petriNetId: '',
petriNetObjectId: undefined,
processIdentifier: '',
Expand Down
Loading