This is an automated email from the ASF dual-hosted git repository.

pdallig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 4efa2a34cc [ZEPPELIN-6270] Rename "Import As" to "Note Name" for 
creating a new note in the new UI
4efa2a34cc is described below

commit 4efa2a34ccdfc2cac64bdbfbc465653a73556559
Author: Yeonhee Hayden Kim <[email protected]>
AuthorDate: Fri Aug 15 15:04:16 2025 +0900

    [ZEPPELIN-6270] Rename "Import As" to "Note Name" for creating a new note 
in the new UI
    
    ### What is this PR for?
    This PR updates the label "Import As" to "Note Name" in the new note 
creation UI.
    The goal is to improve clarity and user experience by using a more 
intuitive label.
    
    
    ### What type of PR is it?
    Improvement
    
    
    ### Todos
    * [x] UI label update: changed "Import As" to "Note Name" in the new note 
creation form
    
    
    ### What is the Jira issue?
    [ZEPPELIN-6270](https://issues.apache.org/jira/browse/ZEPPELIN-6270)
    
    
    ### How should this be tested?
    * No functional code changes
    
    
    ### Screenshots (if appropriate)
    * AS-IS (Classic UI)
    <img width="629" height="395" alt="Screenshot 2025-08-08 at 5 24 34 pm" 
src="https://github.com/user-attachments/assets/af4c6af2-fd40-4db0-affa-1202a532370a";
 />
    
    * AS-IS (New UI)
    <img width="828" height="411" alt="Screenshot 2025-08-08 at 5 24 16 pm" 
src="https://github.com/user-attachments/assets/64c4cb91-1d1a-41c0-bb18-cf6949e0877a";
 />
    
    * TO-BE (New UI)
    <img width="834" height="427" alt="Screenshot 2025-08-08 at 6 02 23 pm" 
src="https://github.com/user-attachments/assets/d8610585-9d8d-4934-a08a-d5c37180f28f";
 />
    
    
    ### Questions:
    * Does the license files need to update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Closes #5018 from devyeony/feature/ZEPPELIN-6270.
    
    Signed-off-by: Philipp Dallig <[email protected]>
---
 .../src/app/share/note-create/note-create.component.html                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/zeppelin-web-angular/src/app/share/note-create/note-create.component.html 
b/zeppelin-web-angular/src/app/share/note-create/note-create.component.html
index 54fe7cde68..4633f5dbaf 100644
--- a/zeppelin-web-angular/src/app/share/note-create/note-create.component.html
+++ b/zeppelin-web-angular/src/app/share/note-create/note-create.component.html
@@ -14,7 +14,7 @@
   <nz-form-item>
     <nz-form-label>
       <ng-container *ngIf="cloneNote;else importTpl">Clone Note</ng-container>
-      <ng-template #importTpl>Import As</ng-template>
+      <ng-template #importTpl>Note Name</ng-template>
     </nz-form-label>
     <nz-form-control>
       <input nz-input [(ngModel)]="noteName" autofocus placeholder="Insert 
Note Name" name="noteName"/>

Reply via email to