Skip to content

Commit d99df07

Browse files
Merge pull request #81 from ThatOpen/missing_comma_topicslist
fix:adds missing comma
2 parents e5cb1b9 + bcb53dc commit d99df07

File tree

1 file changed

+7
-5
lines changed
  • packages/obc/src/components/tables/TopicsList

1 file changed

+7
-5
lines changed

packages/obc/src/components/tables/TopicsList/example.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ await Promise.all(
8989
const file = await fetch(path);
9090
const buffer = await file.arrayBuffer();
9191
return fragments.core.load(buffer, { modelId });
92-
});
92+
}),
93+
);
9394

9495
/* MD
9596
:::tip
@@ -314,14 +315,15 @@ const [topicPanel, updateTopicPanel] = BUI.Component.create<
314315
</bim-panel-section>
315316
<!-- This is a custom section where you can add any functionality you like -->
316317
<bim-panel-section label="Communication" icon="tabler:link">
317-
${topic.assignedTo
318-
? BUI.html`
318+
${
319+
topic.assignedTo
320+
? BUI.html`
319321
<bim-button @click=${onReminderClick} label="Send Mail Reminder" icon="mingcute:send-fill"></bim-button>
320322
`
321-
: BUI.html`
323+
: BUI.html`
322324
<bim-label style="white-space: normal">The topic must have an assignee to use the communication tools. Update the topic with a new assignee!</bim-label>
323325
`
324-
}
326+
}
325327
</bim-panel-section>
326328
`;
327329
} else {

0 commit comments

Comments
 (0)