mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
fix purge submit button in post-listing (#2128)
This commit is contained in:
parent
ab545e0e19
commit
5e91a4d9af
1 changed files with 2 additions and 2 deletions
|
@ -1310,8 +1310,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
{this.state.purgeLoading ? (
|
||||
<Spinner />
|
||||
) : (
|
||||
<button type="submit" className="btn btn-secondary">
|
||||
{this.state.purgeLoading ? <Spinner /> : { purgeTypeText }}
|
||||
<button type="submit" className="btn btn-secondary mt-2">
|
||||
{purgeTypeText}
|
||||
</button>
|
||||
)}
|
||||
</form>
|
||||
|
|
Loading…
Reference in a new issue