Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ZeMKI
Mesort
Commits
f2e5d75f
Commit
f2e5d75f
authored
Jul 08, 2021
by
ZeMKI
Browse files
Token Name from premade tokens bugfix
parent
dbb4cf5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
resources/js/components/newstudy.vue
View file @
f2e5d75f
...
...
@@ -2133,7 +2133,7 @@ export default {
this
.
response
+=
this
.
errormessages
.
short_description
;
}
if
(
this
.
sorting
.
id
!==
2
&&
_
.
find
(
this
.
sorting
.
tokens
,
{
name
:
''
}))
{
if
(
this
.
sorting
.
id
!==
2
&&
_
.
find
(
this
.
sorting
.
tokens
,
(
token
)
=>
{
return
token
.
name
===
''
||
token
.
name
===
undefined
}))
{
this
.
response
+=
this
.
errormessages
.
tokens
;
}
...
...
resources/views/home.blade.php
View file @
f2e5d75f
...
...
@@ -65,7 +65,7 @@
@
if
(
count
(
$studies
)
>
0
)
<
div
class
=
"mx-auto w-2/3 my-4"
>
<
h1
class
=
"text-4xl font-extrabold text-blue-600 break-words"
>
Your
Studies
<
h1
class
=
"text-4xl font-extrabold text-blue-600 break-words"
>
{{
__
(
'
Your Studies
'
)}}
<
span
class
=
"bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full @if(count(
$studies
) > 12) text-red-700 @endif"
>
{{
count
(
$studies
)}}
/
15
</
span
>
@
if
(
session
(
'hasReachMaxNumberOfStudies'
))
<
span
class
=
"text-yellow-300 items-center bg-red-600 px-3 mr-4 text-base"
>
...
...
Write
Preview
Markdown
is supported
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