From 7584ee4db88f82923631cef203649c5a63b5fd3e Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 7 Jul 2021 12:04:33 -0400 Subject: [PATCH] Adding the user id to the display for reference files and workflow spec files. --- package-lock.json | 6 +++--- package.json | 2 +- src/app/file-list/file-list.component.html | 4 +++- src/app/reference-files/reference-files.component.html | 2 ++ 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 79b952b..6f6ca35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12524,9 +12524,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sartography-workflow-lib": { - "version": "0.0.520", - "resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.520.tgz", - "integrity": "sha512-3woDyQWCh5IYvEqW7vGCD+Wpe/FXVmQzR8RfmbVU6SGLECUpbmiDa5dALBJ1plYGlqvSE1hrEAvtp6VznTWzwQ==" + "version": "0.0.522", + "resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.522.tgz", + "integrity": "sha512-icckLPZJBqCdxekG1UpsqpWP0DD+uBgJbLjCqYr6JXMPEsouVbyH4q7EJSP5V8uBpWLHFDEaDIG/pY7hqmgmDw==" }, "sass": { "version": "1.26.3", diff --git a/package.json b/package.json index bbe2d63..1d18e77 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "ngx-markdown": "^9.1.1", "protractor": "^7.0.0", "rxjs": "~6.5.4", - "sartography-workflow-lib": "0.0.520", + "sartography-workflow-lib": "0.0.522", "tslib": "^1.13.0", "uuid": "^7.0.2", "zone.js": "^0.10.3" diff --git a/src/app/file-list/file-list.component.html b/src/app/file-list/file-list.component.html index 0da3442..4f56432 100644 --- a/src/app/file-list/file-list.component.html +++ b/src/app/file-list/file-list.component.html @@ -17,7 +17,9 @@

{{fm.name}}

-

Updated: {{fm.last_modified | date:'medium'}}

+

Updated on {{fm.last_modified | date:'medium'}} + by {{fm.user_uid}} +

diff --git a/src/app/reference-files/reference-files.component.html b/src/app/reference-files/reference-files.component.html index 6d81667..17b8eee 100644 --- a/src/app/reference-files/reference-files.component.html +++ b/src/app/reference-files/reference-files.component.html @@ -12,6 +12,8 @@ +
Last Modified: {{refFile.last_modified | date:'medium'}}
+
By: {{refFile.user_uid}}