mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-21 21:29:20 +01:00
Need loader
This commit is contained in:
parent
252b52ca7a
commit
c8d1ab4748
1 changed files with 10 additions and 3 deletions
|
@ -1670,8 +1670,8 @@ function ReactionsModal({ statusID, instance }) {
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
{uiState === 'default' &&
|
{uiState === 'default' ? (
|
||||||
(showMore ? (
|
showMore ? (
|
||||||
<InView
|
<InView
|
||||||
onChange={(inView) => {
|
onChange={(inView) => {
|
||||||
if (inView) {
|
if (inView) {
|
||||||
|
@ -1689,7 +1689,14 @@ function ReactionsModal({ statusID, instance }) {
|
||||||
</InView>
|
</InView>
|
||||||
) : (
|
) : (
|
||||||
<p class="ui-state insignificant">The end.</p>
|
<p class="ui-state insignificant">The end.</p>
|
||||||
))}
|
)
|
||||||
|
) : (
|
||||||
|
uiState === 'loading' && (
|
||||||
|
<p class="ui-state">
|
||||||
|
<Loader abrupt />
|
||||||
|
</p>
|
||||||
|
)
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
) : uiState === 'loading' ? (
|
) : uiState === 'loading' ? (
|
||||||
<p class="ui-state">
|
<p class="ui-state">
|
||||||
|
|
Loading…
Reference in a new issue