admin: disabled header buttons on column "actions" of tables
Massimo Melina committed
May 2, 2022 at 12:11 UTC
d5bfe350b5082365da35d9805a8e64a25e3aaeab
2 files changed
+5
-1
admin/src/MonitorPage.ts
+3
-1
@@ -117,9 +117,11 @@ function Connections() {
117
valueFormatter: ({ value }) => formatBytes(value as number)
118
},
119
{
120
- field: "Actions ",
120
+ field: "Actions",
121
width: 80,
122
align: 'center',
123
+ hideSortIcons: true,
124
+ disableColumnMenu: true,
125
renderCell({ row }) {
126
return h('div', {},
127
h(IconBtn, {
admin/src/PluginsPage.ts
+2
@@ -48,6 +48,8 @@ export default function PluginsPage() {
48
field: "actions",
49
width: 80,
50
align: 'center',
51
+ hideSortIcons: true,
52
+ disableColumnMenu: true,
53
renderCell({ row }) {
54
const { config, id } = row
55
return h('div', {},