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

linxinyuan pushed a commit to branch xinyuan-dataset-selector
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/xinyuan-dataset-selector by 
this push:
     new ae027e041e fix fmt
ae027e041e is described below

commit ae027e041ee33c16d25e036bc6718e1c492281ca
Author: Xinyuan Lin <[email protected]>
AuthorDate: Mon Apr 13 13:02:39 2026 -0700

    fix fmt
---
 .../dataset-selection-modal.component.html                     |  3 ++-
 .../dataset-selection-modal.component.scss                     | 10 +---------
 2 files changed, 3 insertions(+), 10 deletions(-)

diff --git 
a/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.html
 
b/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.html
index 31f6250301..bd316dbdba 100644
--- 
a/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.html
+++ 
b/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.html
@@ -32,7 +32,7 @@
           [nzCustomContent]="true">
           <div class="dataset-option">
             #{{ dataset.dataset.did }} &nbsp;
-            <span class="dataset-name">{{ dataset.dataset.name }}</span>
+            <span class="dataset-name">{{ dataset.dataset.name }}</span>&nbsp;
             <span class="access-level">{{ dataset.isOwner ? 'OWNER' : 
dataset.accessPrivilege }}</span>
           </div>
         </nz-option>
@@ -60,6 +60,7 @@
   </div>
   <button
     nz-button
+    nzSize="small"
     nzType="primary"
     [disabled]="!selectedFilePath"
     (click)="onConfirmSelection()">
diff --git 
a/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.scss
 
b/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.scss
index 3ae6c146e0..62bad377d9 100644
--- 
a/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.scss
+++ 
b/frontend/src/app/workspace/component/dataset-selection-modal/dataset-selection-modal.component.scss
@@ -21,6 +21,7 @@
   display: flex;
   flex-direction: column;
   gap: 16px;
+  margin-bottom: 10px;
 }
 
 .selectors {
@@ -47,19 +48,10 @@
 }
 
 .dataset-name {
-  max-width: calc(100% - 100px);
-  white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
 }
 
 .access-level{
-  margin-left: 10px;
-  font-size: 12px;
   color: grey;
 }
-
-.actions {
-  display: flex;
-  justify-content: flex-end;
-}

Reply via email to