Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SSHOC
sshoc-marketplace-frontend
Commits
529ae78c
Commit
529ae78c
authored
Jun 30, 2021
by
Stefan Probst
Browse files
style: fix account pagination
parent
3f09f502
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/screens/account/ActorsScreen.tsx
View file @
529ae78c
...
...
@@ -114,7 +114,7 @@ export default function ActorsScreen(): JSX.Element {
<
ProgressSpinner
/>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
ItemSearch
filter
=
{
query
}
/>
<
ItemPagination
filter
=
{
query
}
results
=
{
actors
.
data
}
/>
</
div
>
...
...
src/screens/account/ContributedItemsScreen.tsx
View file @
529ae78c
...
...
@@ -98,7 +98,7 @@ export default function ContributedItemsScreen(): JSX.Element {
<
div
>
Nothing found
</
div
>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
ItemSortOrder
filter
=
{
query
}
/>
<
ItemPagination
filter
=
{
query
}
results
=
{
items
.
data
}
/>
</
div
>
...
...
src/screens/account/DraftItemsScreen.tsx
View file @
529ae78c
...
...
@@ -84,7 +84,7 @@ export default function DraftItemsScreen(): JSX.Element {
<
p
>
No draft items found.
</
p
>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
ItemSortOrder
filter
=
{
query
}
/>
<
ItemPagination
filter
=
{
query
}
results
=
{
items
.
data
}
/>
</
div
>
...
...
src/screens/account/ModerateItemsScreen.tsx
View file @
529ae78c
...
...
@@ -93,7 +93,7 @@ export default function ModerateItemsScreen(): JSX.Element {
<
div
>
Nothing found
</
div
>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
ItemSortOrder
filter
=
{
query
}
/>
<
ItemPagination
filter
=
{
query
}
results
=
{
items
.
data
}
/>
</
div
>
...
...
src/screens/account/SourcesScreen.tsx
View file @
529ae78c
...
...
@@ -123,7 +123,7 @@ export default function SourcesScreen(): JSX.Element {
<
ProgressSpinner
/>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
div
className
=
"space-x-8"
>
{
/* <ItemSortOrder filter={query} /> */
}
<
ItemSearch
filter
=
{
query
}
/>
...
...
src/screens/account/UsersScreen.tsx
View file @
529ae78c
...
...
@@ -112,7 +112,7 @@ export default function UsersScreen(): JSX.Element {
<
ProgressSpinner
/>
)
:
(
<
Fragment
>
<
div
className
=
"items-center justify-between"
>
<
div
className
=
"
flex
items-center justify-between"
>
<
div
className
=
"space-x-8"
>
{
/* <ItemSortOrder filter={query} /> */
}
<
ItemSearch
filter
=
{
query
}
/>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment