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
133
Issues
133
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
a5010ff3
Commit
a5010ff3
authored
Aug 23, 2024
by
Fabien Maniere
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor update on OR/AND bar (bootstrap classes)
parent
409ace3a
Pipeline
#6530
passed with stages
in 26 minutes and 17 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
DocList.purs
src/Gargantext/Components/GraphExplorer/Sidebar/DocList.purs
+4
-4
DocList.purs
src/Gargantext/Components/PhyloExplorer/Sidebar/DocList.purs
+4
-4
No files found.
src/Gargantext/Components/GraphExplorer/Sidebar/DocList.purs
View file @
a5010ff3
...
...
@@ -258,9 +258,9 @@ docListCpt = here.component "main" cpt where
R2.when (results == Seq.empty) $
H.div {}
[
H.ul { className: "flex-row list-group
vertical-align-middle
" }
H.ul { className: "flex-row list-group
justify-content-space-between align-items-center mb-1
" }
[ H.li {} [ andOrButton { state: buttonState } ]
, H.li {} [ H.
h6 {
} [ H.text "No related documents" ] ]
, H.li {} [ H.
p { className: "text-bold"
} [ H.text "No related documents" ] ]
, H.li {} [ B.iconButton { name: "search", title: "Search the web", callback: \_ -> webSearch (A.fromFoldable selectedNgramsTerms') goToURL } ]
, H.li {} [ B.iconButton { name: "wikipedia-w", title: "Search Wikipedia", callback: \_ -> wikipediaSearch (A.fromFoldable selectedNgramsTerms') goToURL } ]
]
...
...
@@ -275,9 +275,9 @@ docListCpt = here.component "main" cpt where
H.div {}
[
H.ul { className: "flex-row list-group
vertical-align-middle
" }
H.ul { className: "flex-row list-group
justify-content-space-between align-items-center mb-1
" }
[ H.li {} [ andOrButton { state: buttonState } ]
, H.li {} [ H.
h6 {
} [ H.text $ show (Seq.length results) <> " related documents" ] ]
, H.li {} [ H.
p { className: "text-bold"
} [ H.text $ show (Seq.length results) <> " related documents" ] ]
, H.li {} [ B.iconButton { name: "search", title: "Search the web", callback: \_ -> webSearch (A.fromFoldable selectedNgramsTerms') goToURL } ]
, H.li {} [ B.iconButton { name: "wikipedia-w", title: "Search Wikipedia", callback: \_ -> wikipediaSearch (A.fromFoldable selectedNgramsTerms') goToURL } ]
]
...
...
src/Gargantext/Components/PhyloExplorer/Sidebar/DocList.purs
View file @
a5010ff3
...
...
@@ -245,9 +245,9 @@ docListCpt = here.component "main" cpt where
R2.when (results == Seq.empty) $
H.div {}
[
H.ul { className: "flex-row list-group
vertical-align-middle
" }
H.ul { className: "flex-row list-group
justify-content-space-between align-items-center mb-1
" }
[ H.li {} [ andOrButton { state: buttonState } ]
, H.li {} [ H.
h6 {
} [ H.text "No related documents" ] ]
, H.li {} [ H.
p { className: "text-bold"
} [ H.text "No related documents" ] ]
, H.li {} [ B.iconButton { name: "search", title: "Search the web", callback: \_ -> webSearch q' goToURL} ]
, H.li {} [ B.iconButton { name: "wikipedia-w", title: "Search Wikipedia", callback: \_ -> wikipediaSearch q' goToURL} ]
]
...
...
@@ -261,9 +261,9 @@ docListCpt = here.component "main" cpt where
R2.when (not $ eq results Seq.empty) $
H.div {}
[
H.ul { className: "flex-row list-group
vertical-align-middle
" }
H.ul { className: "flex-row list-group
justify-content-space-between align-items-center mb-1
" }
[ H.li {} [ andOrButton { state: buttonState } ]
, H.li {} [ H.
h6 {
} [ H.text $ show (Seq.length results) <> " related documents" ] ]
, H.li {} [ H.
p { className: "text-bold"
} [ H.text $ show (Seq.length results) <> " related documents" ] ]
, H.li {} [ B.iconButton { name: "search", title: "Search the web", callback: \_ -> webSearch q' goToURL} ]
, H.li {} [ B.iconButton { name: "wikipedia-w", title: "Search Wikipedia", callback: \_ -> wikipediaSearch q' goToURL} ]
]
...
...
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