We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4782c5d commit f271a07Copy full SHA for f271a07
apps/roam/src/components/settings/DiscourseNodeConfigPanel.tsx
@@ -193,22 +193,24 @@ const DiscourseNodeConfigPanel: React.FC<DiscourseNodeConfigPanelProps> = ({
193
/>
194
</Tooltip>
195
<Button
196
- children="Confirm"
197
intent={Intent.DANGER}
198
onClick={() => {
199
handleDeleteNodeTypeWithConfirmation(n.type, n.text);
200
}}
201
className={`mx-1 ${
202
deleteConfirmation !== n.type ? "opacity-0" : ""
203
}`}
204
- />
+ >
+ Confirm
205
+ </Button>
206
- children="Cancel"
207
onClick={() => setDeleteConfirmation(null)}
208
209
210
211
212
+ Cancel
213
214
</td>
215
</tr>
216
))}
0 commit comments