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
151
Issues
151
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
48be3238
Commit
48be3238
authored
Apr 11, 2024
by
mzheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove tracing
parent
77b38698
Pipeline
#5908
failed with stage
in 0 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
13 deletions
+1
-13
Layout.purs
src/Gargantext/Components/Document/Layout.purs
+1
-3
Debug.js
src/Test/Debug.js
+0
-6
Debug.purs
src/Test/Debug.purs
+0
-4
No files found.
src/Gargantext/Components/Document/Layout.purs
View file @
48be3238
...
...
@@ -31,8 +31,6 @@ import Reactix.DOM.HTML as H
import Record as Record
import Toestand as T
import Test.Debug (trace)
-------------------------------------------------------------------------
...
...
@@ -337,7 +335,7 @@ layoutWithContextNgramsCpt = here.component "layoutWithContextNgrams" cpt where
(publicationDate $ Document doc)
]
, R2.fromMaybe
(trace (fromMaybe "VIDE" doc.institutes) (doc.institutes))
\institutes ->
, R2.fromMaybe
doc.institutes
\institutes ->
H.div
{ className: "document-layout__institutes justify-content-space-between" }
...
...
src/Test/Debug.js
deleted
100644 → 0
View file @
77b38698
export
function
trace
(
msg
)
{
return
function
(
x
)
{
console
.
log
(
msg
);
return
x
;
};
};
\ No newline at end of file
src/Test/Debug.purs
deleted
100644 → 0
View file @
77b38698
module Test.Debug where
import Prelude
foreign import trace :: forall a. String -> a -> a
\ No newline at end of file
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