Skip to content

Commit 3ec9c16

Browse files
authored
fix the bug (#571)
1 parent c27e20c commit 3ec9c16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/obsidian/src/components/RelationshipTypeSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const RelationshipTypeSettings = () => {
8484

8585
const handleSave = async (): Promise<void> => {
8686
for (const relType of relationTypes) {
87-
if (!relType.id || !relType.label || !relType.complement || !relType.color) {
87+
if (!relType.id || !relType.label || !relType.complement) {
8888
new Notice("All fields are required for relation types.");
8989
return;
9090
}

0 commit comments

Comments
 (0)