Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 6457c8b

Browse files
committed
Merge branch 'fix-dv-relations'
2 parents b472862 + 76c6fb4 commit 6457c8b

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

docs/docs/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 2.8.4
2+
- New rollup. All task count [ISSUE#602](https://github.com/RafaelGB/obsidian-db-folder/issues/602)
3+
- New db source, current folder without subfolders [ISSUE#281](https://github.com/RafaelGB/obsidian-db-folder/issues/281)
4+
- Now row context menu will display with right click (long press on mobile). Left click will open the note.
5+
### Improved
6+
- Default values avaliable for cell size and sticky of first colum on global settings [ISSUE#358](https://github.com/RafaelGB/obsidian-db-folder/issues/358)
7+
- New toggle global configuration to show/hide the row shadow [ISSUE#421](https://github.com/RafaelGB/obsidian-db-folder/issues/421)
8+
- New column text configuration to customize the name of URL alias [ISSUE#356](https://github.com/RafaelGB/obsidian-db-folder/issues/356)
9+
- Go to page of entry creation [ISSUE#332](https://github.com/RafaelGB/obsidian-db-folder/issues/332)
10+
- Support for external links [ISSUE#232](https://github.com/RafaelGB/obsidian-db-folder/issues/232)
11+
### No longer broken
12+
- Error handler with not correct calendar formats. Use a default one [ISSUE#595](https://github.com/RafaelGB/obsidian-db-folder/issues/595)
113
## 2.8.3
214
### Shiny new things
315
- Obsidian-projects support (experimental) [ISSUE#574](https://github.com/RafaelGB/obsidian-db-folder/issues/574)

src/components/cellTypes/Editor/RelationEditor.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const RelationEditor = (props: RelationEditorComponentProps) => {
1515
const { table, column } = defaultCell;
1616
const tableColumn = column.columnDef as TableColumn;
1717
const { tableState } = table.options.meta;
18-
const configInfo = tableState.configState((state) => state.info);
1918
const columnsInfo = tableState.columns((state) => state.info);
2019

2120
const [relationValue, setRelationValue] = useState(

src/helpers/RelationHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function recordRowsFromRelation(ddbbPath: string, ddbbConfig: Local
3434

3535
const ddbbRows = await sourceDataviewPages(ddbbInfo.yaml.config, ddbbFile.parent.path, columns);
3636
ddbbRows
37-
.filter((page) => page[DatabaseCore.FRONTMATTER_KEY] === undefined)
37+
.filter((page) => !page[DatabaseCore.FRONTMATTER_KEY])
3838
.forEach((page) => {
3939
const file = (page as SMarkdownPage).file;
4040
relationRows[file.path] = file.name;

0 commit comments

Comments
 (0)