We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbbfe37 commit 0cc54abCopy full SHA for 0cc54ab
1 file changed
src/App.tsx
@@ -867,6 +867,12 @@ function Suggestions({
867
) : null}
868
{suggestion.status === "accepted" ? (
869
<footer>
870
+ {suggestion.kind === "forum_creation" && suggestion.forumSpec ? (
871
+ <button type="button" onClick={() => onApproveAndCreateForum(suggestion.id)}>
872
+ <Plus aria-hidden="true" />
873
+ Approve & Create
874
+ </button>
875
+ ) : null}
876
<button type="button" onClick={() => onStatus(suggestion.id, "implemented")}>
877
Mark implemented
878
</button>
0 commit comments