Skip to content

UX: Fix more-topics tabs interaction with --space #34047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup
  • Loading branch information
CvX committed Aug 3, 2025
commit a928b45b09b16dd308ee5676ae55a1733d349677
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
import Component from "@glimmer/component";
import MoreTopics from "discourse/components/more-topics";
import RelatedMessages from "discourse/components/related-messages";
import SuggestedTopics from "discourse/components/suggested-topics";
import { cloneJSON } from "discourse/lib/object";
import StyleguideExample from "discourse/plugins/styleguide/discourse/components/styleguide-example";

export default class MoreTopicsOrganism extends Component {
<template>
<StyleguideExample @title="<SuggestedTopics>">
<SuggestedTopics @topic={{@dummy.topic}} />
</StyleguideExample>
const MoreTopicsOrganism = <template>
<StyleguideExample @title="<SuggestedTopics>">
<SuggestedTopics @topic={{@dummy.topic}} />
</StyleguideExample>

<StyleguideExample @title="<RelatedMessages>">
<RelatedMessages @topic={{@dummy.pmTopic}} />
</StyleguideExample>
<StyleguideExample @title="<RelatedMessages>">
<RelatedMessages @topic={{@dummy.pmTopic}} />
</StyleguideExample>

<StyleguideExample @title="<SuggestedTopics> - with tabs">
<MoreTopics @topic={{@dummy.pmTopic}} />
</StyleguideExample>
</template>
}
<StyleguideExample @title="<MoreTopics> - with tabs">
<MoreTopics @topic={{@dummy.pmTopic}} />
</StyleguideExample>
</template>;

export default MoreTopicsOrganism;