mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02:00
fix(views/table): wrong type when renaming relations
This commit is contained in:
parent
ef1153d336
commit
ba5ef93c1a
@ -78,14 +78,14 @@ export default class TableColumnEditing extends Component {
|
||||
return;
|
||||
}
|
||||
|
||||
const { name, type, value } = this.newAttribute;
|
||||
const { name, value } = this.newAttribute;
|
||||
|
||||
this.api.blockRedraw();
|
||||
try {
|
||||
if (this.existingAttributeToEdit && this.existingAttributeToEdit.name !== name) {
|
||||
const oldName = this.existingAttributeToEdit.name.split(":")[1];
|
||||
const newName = name.split(":")[1];
|
||||
await renameColumn(this.parentNote.noteId, type, oldName, newName);
|
||||
const [ type, newName ] = name.split(":");
|
||||
await renameColumn(this.parentNote.noteId, type as "label" | "relation", oldName, newName);
|
||||
}
|
||||
|
||||
attributes.setLabel(this.parentNote.noteId, name, value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user