-
Notifications
You must be signed in to change notification settings - Fork 338
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
Admin Settings: Bugfixes #1313
Admin Settings: Bugfixes #1313
Conversation
…me labels, add missing bind
@@ -73,6 +73,7 @@ export class Setup extends Component<any, State> { | |||
onSaveSite={this.handleCreateSite} | |||
siteRes={this.state.siteRes} | |||
themeList={this.state.themeList} | |||
loading={false} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can always be false
since the route is redirected upon submit of this form.
…alectrocute/lemmy-ui into admin-settings-bugfixes-and-tlc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but I would separate the site loading indicator from the emoji loading one.
Thanks for the feedback, @dessalines! I've implemented the changes. |
Hi Lemdevs!
This PR addresses some outstanding bugs in our admin settings panel –
handleRemoveInstance
(ugh, I hate we have to do this!)loading
state toAdminSettings
, pass as prop to all children, which resolves some infinite loading issuesThanks!