fix: 아이콘에도 pointer css

This commit is contained in:
2022-04-08 01:32:47 +09:00
parent b1408cd9f3
commit f04845f7dd
+2 -1
View File
@@ -503,6 +503,7 @@ const columnRawDefs = ref<Partial<Record<headerType, GenColDef | GenColGroupDef>
return `<img src="${getIconPath(gen.imgsvr, gen.picture)}" width="64">`; return `<img src="${getIconPath(gen.imgsvr, gen.picture)}" width="64">`;
}, },
pinned: "left", pinned: "left",
cellClass: [props.availableGeneralClick?'clickable-cell':'', ...defaultCellClass],
lockPosition: true, lockPosition: true,
}, },
name: { name: {
@@ -522,7 +523,7 @@ const columnRawDefs = ref<Partial<Record<headerType, GenColDef | GenColGroupDef>
return style as CellStyle; return style as CellStyle;
}, },
filterValueGetter: ({ data }) => convertSearch초성(data.name), filterValueGetter: ({ data }) => convertSearch초성(data.name),
cellClass: ['clickable-cell', ...defaultCellClass], cellClass: [props.availableGeneralClick?'clickable-cell':'', ...defaultCellClass],
filter: true, filter: true,
hide: false, hide: false,
lockVisible: true, lockVisible: true,