+
@@ -96,7 +101,14 @@
-
+
+
+
+
+ View Code
+
+
+
@@ -106,7 +118,7 @@
@@ -118,7 +130,7 @@
@@ -127,23 +139,18 @@
Delete
+
+
- {{ favoriteText(props.node.favorite) }}
+ {{
+ props.node.favorite ? "Remove as Favorite" : "Add as Favorite"
+ }}
-
-
-
-
-
-
- View Code
-
-
-
+
@@ -166,7 +173,7 @@
class="settings-tbl-sticky"
:rows="visibleScripts"
:columns="columns"
- :visible-columns="visibleColumns"
+ :loading="loading"
v-model:pagination="pagination"
:filter="search"
row-key="id"
@@ -188,11 +195,22 @@
No Scripts Found
-
+
-
+
+
+
+
+ View Code
+
+
+
@@ -202,7 +220,7 @@
@@ -214,7 +232,7 @@
@@ -223,23 +241,18 @@
Delete
+
+
- {{ favoriteText(props.row.favorite) }}
+ {{
+ props.row.favorite ? "Remove as Favorite" : "Add as Favorite"
+ }}
-
-
-
-
-
-
- View Code
-
-
-
+
@@ -269,7 +282,7 @@
- {{ truncateText(props.row.name) }}
+ {{ truncateText(props.row.name, 50) }}
{{ props.row.name }}
@@ -277,8 +290,8 @@
- {{ truncateText(props.row.args.toString()) }}
-
+ {{ truncateText(props.row.args.toString(), 30) }}
+
{{ props.row.args }}
@@ -286,8 +299,8 @@
{{ props.row.category }}
- {{ truncateText(props.row.description) }}
- {{
+ {{ truncateText(props.row.description, 30) }}
+ {{
props.row.description
}}
@@ -298,239 +311,167 @@
-