Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
132
Issues
132
List
Board
Labels
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
175fcd4d
Commit
175fcd4d
authored
Apr 21, 2023
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] removing languages that are not supported for web crawl yet
parent
aadd5449
Pipeline
#3922
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
SearchField.purs
...omponents/Forest/Tree/Node/Action/Search/SearchField.purs
+10
-3
No files found.
src/Gargantext/Components/Forest/Tree/Node/Action/Search/SearchField.purs
View file @
175fcd4d
...
...
@@ -429,7 +429,8 @@ type DatafieldInputProps =
( databases :: Array Database
, langs :: Array Lang
, search :: T.Box Search
, session :: Session )
, session :: Session
)
datafieldInput :: R2.Component DatafieldInputProps
datafieldInput = R.createElement datafieldInputCpt
...
...
@@ -463,8 +464,14 @@ datafieldInputCpt = here.component "datafieldInput" cpt where
else H.div {} []
, if needsLang search'.datafield
then langNav { langs, search } []
else H.div {} []
then
if search'.datafield == Just Web
then
langNav { langs:A.filter (\lang -> lang == FR) langs, search } []
else
langNav { langs, search } []
else
H.div {} []
, H.div {} [ searchIframes { iframeRef, search } [] ]
]
...
...
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