Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gryc-website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gryc
gryc-website
Commits
3b873959
Commit
3b873959
authored
1 month ago
by
Hugo Devillers
Browse files
Options
Downloads
Patches
Plain Diff
Fix two wrong class call.
parent
5b901f81
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
assets/js/cookie-consent.js
+1
-1
1 addition, 1 deletion
assets/js/cookie-consent.js
src/Form/Type/SpeciesType.php
+1
-1
1 addition, 1 deletion
src/Form/Type/SpeciesType.php
src/Form/Type/StrainType.php
+1
-1
1 addition, 1 deletion
src/Form/Type/StrainType.php
with
3 additions
and
3 deletions
assets/js/cookie-consent.js
+
1
−
1
View file @
3b873959
...
...
@@ -40,7 +40,7 @@ $(document).ready(function(){
_paq
.
push
([
'
trackPageView
'
]);
_paq
.
push
([
'
enableLinkTracking
'
]);
(
function
()
{
var
u
=
"
//
matomo.igenolevures.org
/
"
;
var
u
=
"
//
147.100.164.102
/
"
;
_paq
.
push
([
'
setTrackerUrl
'
,
u
+
'
matomo.php
'
]);
_paq
.
push
([
'
setSiteId
'
,
'
1
'
]);
var
d
=
document
,
g
=
d
.
createElement
(
'
script
'
),
s
=
d
.
getElementsByTagName
(
'
script
'
)[
0
];
...
...
This diff is collapsed.
Click to expand it.
src/Form/Type/SpeciesType.php
+
1
−
1
View file @
3b873959
...
...
@@ -41,7 +41,7 @@ class SpeciesType extends AbstractType
'required'
=>
false
,
])
->
add
(
'clade'
,
EntityType
::
class
,
[
'class'
=>
'App
:
Clade'
,
'class'
=>
'App
\Entity\
Clade'
,
'choice_label'
=>
'name'
,
'query_builder'
=>
function
(
CladeRepository
$repository
)
{
return
$repository
->
createQueryBuilder
(
'c'
)
...
...
This diff is collapsed.
Click to expand it.
src/Form/Type/StrainType.php
+
1
−
1
View file @
3b873959
...
...
@@ -34,7 +34,7 @@ class StrainType extends AbstractType
{
$builder
->
add
(
'species'
,
EntityType
::
class
,
[
'class'
=>
'App
:
Species'
,
'class'
=>
'App
\Entity\
Species'
,
'choice_label'
=>
'scientificname'
,
])
->
add
(
'name'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment