diff --git a/packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue b/packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue
index e787eed433..4b900a79f3 100644
--- a/packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue
+++ b/packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue
@@ -5,10 +5,10 @@
- View Link
+ View name
|
- View name
+ View Link
|
Password
@@ -19,29 +19,74 @@
|
-
-
-
- {{ `${dashboardUrl}#/nc/${link.view_type === 'form' ? 'form' : 'view'}/${link.view_id}` }}
-
+ |
+
+
+ {{ viewIcons[currentView.view_type].icon }}
+
+
+ {{ currentView.view_name }}
|
-
- {{ link.view_name }}
+ |
+
+ {{ `${dashboardUrl}#/nc/${currentView.view_type === 'form' ? 'form' : 'view'}/${currentView.view_id}` }}
+
|
-
- {{ link.showPassword ? link.password : '***************************' }}
-
- {{ link.showPassword ? 'visibility_off' : 'visibility' }}
+
+ {{ currentView.showPassword ? link.password : '***************************' }}
+
+ {{ currentView.showPassword ? 'visibility_off' : 'visibility' }}
|
-
+
+ mdi-content-copy
+
+
mdi-delete-outline
|
+
+
+
+ Other views
+ |
+
+
+
+
+
+ {{ viewIcons[link.view_type].icon }}
+
+
+ {{ link.view_name }}
+ |
+
+
+ {{ `${dashboardUrl}#/nc/${link.view_type === 'form' ? 'form' : 'view'}/${link.view_id}` }}
+
+ |
+
+
+ {{ link.showPassword ? link.password : '***************************' }}
+
+ {{ link.showPassword ? 'visibility_off' : 'visibility' }}
+
+
+ |
+
+
+ mdi-content-copy
+
+
+ mdi-delete-outline
+
+ |
+
+
@@ -49,11 +94,15 @@