This is an automated email from the ASF dual-hosted git repository. hshpak pushed a commit to branch fix/DATALAB-2868/change-the-hint-and-confirmation-message-for-image-share in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit ec518f98f1d32e0e23ac27498ce131daa890e309 Author: Hennadii_Shpak <[email protected]> AuthorDate: Fri Jul 1 09:33:40 2022 +0300 [DATALAB-2868] changed hint messages --- .../resources/webapp/src/app/resources/images/images.component.html | 4 ++-- .../app/shared/modal-dialog/share-image/share-image.component.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html index 7033dcc25..9f85994d0 100644 --- a/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/resources/images/images.component.html @@ -243,8 +243,8 @@ <span>Terminate</span> </button> </li> - <li [matTooltip]="element.status !== 'CREATED' && 'This image cannot be shared by you. Contact Admin user' - || userName !== element.user && 'Images may be shared by owners only. Please contact Admin user.'" + <li [matTooltip]="element.status !== 'CREATED' && 'The image cannot be shared because it is not in the "Created" status' + || userName !== element.user && 'Images may be shared by creators only'" matTooltipPosition="above" [matTooltipDisabled]="userName === element.user && element.status === 'CREATED'" > diff --git a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/share-image/share-image.component.html b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/share-image/share-image.component.html index db83d0eaa..ffda3db02 100644 --- a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/share-image/share-image.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/share-image/share-image.component.html @@ -24,7 +24,7 @@ </header> <section class="content"> <p class="description"> - The image will be shared with the rest of Regular Users on the project with all the data and code. + The image will be shared with all current Regular Users on the project with all the data and code. </p> <p class="question center"> Do you want proceed? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
