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
139
Issues
139
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
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
ea209680
Commit
ea209680
authored
Feb 03, 2025
by
Fabien Maniere
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix an error / wrong value for NoList, and add en information text on select
parent
2e43c474
Pipeline
#7299
canceled with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Upload.purs
...Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
+7
-0
Types.purs
src/Gargantext/Components/ListSelection/Types.purs
+1
-1
No files found.
src/Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
View file @
ea209680
...
...
@@ -300,6 +300,13 @@ uploadFileViewWithLangsCpt = here.component "uploadFileViewWithLangs" cpt
, R2.row
[ H.div { className: "col-12 form-group" }
[ H.label {} [ H.text "Please choose the list of terms to use:" ]
, H.details { className: "small p-1 pl-3 pb-2 alert-light" }
[ H.summary {} [ H.text "Infos about this choice:" ]
, H.p {}
[ H.text "- My list first: the analysis will generate a list of terms based on your previous lists of terms"
, H.br {}
, H.text "- NoList: the analysis will not generate any terms" ]
]
, ListSelection.selection { selection, session } []
]
]
...
...
src/Gargantext/Components/ListSelection/Types.purs
View file @
ea209680
...
...
@@ -19,7 +19,7 @@ derive instance Generic Selection _
instance Show Selection where
show MyListsFirst = "My lists first"
-- show OtherListsFirst = "Other lists first"
show NoList = "No
list (the analysis will not generate any terms)
"
show NoList = "No
List
"
show (SelectedLists _) = "Selected lists"
instance Eq Selection where
...
...
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