mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-10 02:15:11 +00:00
update prop name
This commit is contained in:
parent
b076427e8d
commit
cd9de0b2e0
|
@ -21,7 +21,7 @@ interface CommunityFormProps {
|
|||
onCancel?(): any;
|
||||
onUpsertCommunity(form: CreateCommunity | EditCommunity): void;
|
||||
enableNsfw?: boolean;
|
||||
isLoading?: boolean;
|
||||
loading?: boolean;
|
||||
}
|
||||
|
||||
interface CommunityFormState {
|
||||
|
@ -88,7 +88,7 @@ export class CommunityForm extends Component<
|
|||
<form onSubmit={linkEvent(this, this.handleCreateCommunitySubmit)}>
|
||||
<NavigationPrompt
|
||||
when={
|
||||
!this.props.isLoading &&
|
||||
!this.props.loading &&
|
||||
!!(
|
||||
this.state.form.name ||
|
||||
this.state.form.title ||
|
||||
|
@ -241,9 +241,9 @@ export class CommunityForm extends Component<
|
|||
<button
|
||||
type="submit"
|
||||
className="btn btn-secondary mr-2"
|
||||
disabled={this.props.isLoading}
|
||||
disabled={this.props.loading}
|
||||
>
|
||||
{this.props.isLoading ? (
|
||||
{this.props.loading ? (
|
||||
<Spinner />
|
||||
) : this.props.community_view ? (
|
||||
capitalizeFirstLetter(i18n.t("save"))
|
||||
|
|
|
@ -47,7 +47,7 @@ export class CreateCommunity extends Component<any, CreateCommunityState> {
|
|||
allLanguages={this.state.siteRes.all_languages}
|
||||
siteLanguages={this.state.siteRes.discussion_languages}
|
||||
communityLanguages={this.state.siteRes.discussion_languages}
|
||||
isLoading={this.state.loading}
|
||||
loading={this.state.loading}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue