Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mohammad Dwikurnia Apriadi
Diskuy-Frontend
Commits
ef79a457
Commit
ef79a457
authored
Feb 23, 2021
by
Jonathan
Browse files
Merge branch 'jonathan' into 'master'
fix wording See merge request
!36
parents
fadc24ef
1ae585b2
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/components/profile/Profile.jsx
View file @
ef79a457
...
...
@@ -81,7 +81,7 @@ export default function Profile(props) {
{
totalItems
==
0
?
(
<
p
>
{
isUser
?
"
You don't have any thread. Why don't you make one?
"
?
"
You don't have any thread
s
. Why don't you make one?
"
:
`
${
user
.
username
}
doesn't have any threads.`
}
</
p
>
)
:
(
...
...
src/components/thread/RecentThreads.jsx
View file @
ef79a457
...
...
@@ -35,7 +35,7 @@ export default function RecentThreads(props) {
return
(
<
div
className
=
"recentThreads"
>
{
totalItems
==
0
?
(
<
p
>
There is no thread yet.
</
p
>
<
p
>
There is no thread
s
yet.
</
p
>
)
:
(
<
Fragment
>
<
ThreadList
thread
=
{
threads
}
/>
...
...
src/components/thread/TopThreads.jsx
View file @
ef79a457
...
...
@@ -34,7 +34,7 @@ export default function TopThreads(props) {
return
(
<
div
className
=
"topThreads"
>
{
totalItems
==
0
?
(
<
p
>
There is no thread yet.
</
p
>
<
p
>
There is no thread
s
yet.
</
p
>
)
:
(
<
Fragment
>
<
ThreadList
thread
=
{
threads
}
/>
...
...
src/components/topic/TopicList.jsx
View file @
ef79a457
...
...
@@ -28,7 +28,7 @@ export default function TopicList(props) {
</
div
>
{
topics
.
length
==
0
&&
(
<
div
className
=
"noTopic"
>
<
p
>
There is no topic yet.
</
p
>
<
p
>
There is no topic
s
yet.
</
p
>
</
div
>
)
}
{
topics
.
length
!=
0
&&
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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