mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
feat(views/table): hide column titles for small ones
This commit is contained in:
parent
ae9b2c08a9
commit
513636e1e0
@ -64,6 +64,7 @@ export async function buildData(parentNote: FNote, info: PromotedAttributeInform
|
||||
}
|
||||
|
||||
export function buildColumnDefinitions(info: PromotedAttributeInformation[]) {
|
||||
const emptyTitleFormatter = () => "";
|
||||
const columnDefs: ColumnDefinition[] = [
|
||||
{
|
||||
title: "#",
|
||||
@ -75,7 +76,8 @@ export function buildColumnDefinitions(info: PromotedAttributeInformation[]) {
|
||||
},
|
||||
{
|
||||
field: "iconClass",
|
||||
title: "Icon",
|
||||
title: "Note icon",
|
||||
titleFormatter: emptyTitleFormatter,
|
||||
width: 40,
|
||||
headerSort: false,
|
||||
hozAlign: "center",
|
||||
@ -109,11 +111,12 @@ export function buildColumnDefinitions(info: PromotedAttributeInformation[]) {
|
||||
|
||||
// End actions
|
||||
columnDefs.push({
|
||||
title: "Open note",
|
||||
title: "Open note button",
|
||||
width: 40,
|
||||
hozAlign: "center",
|
||||
headerSort: false,
|
||||
formatter: () => `<span class="bx bx-window-open"></span>`,
|
||||
titleFormatter: emptyTitleFormatter,
|
||||
cellClick: (e, cell) => {
|
||||
const noteId = cell.getRow().getCell("noteId").getValue();
|
||||
if (noteId) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user