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
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Grégoire Locqueville
purescript-gargantext
Commits
b5dbd5a3
Commit
b5dbd5a3
authored
Jul 27, 2020
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] small fixes
parent
0614de16
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
Node.purs
src/Gargantext/Components/Node.purs
+8
-8
CacheAPI.js
src/Gargantext/Utils/CacheAPI.js
+1
-1
Version.purs
src/Gargantext/Version.purs
+2
-2
No files found.
src/Gargantext/Components/Node.purs
View file @
b5dbd5a3
...
...
@@ -29,14 +29,14 @@ instance decodeNodePoly :: (DecodeJson a)
hyperdata <- obj .: "hyperdata"
hyperdata' <- decodeJson hyperdata
pure $ NodePoly { id
: id
, typename : typenam
e
, userId : userId
, parentId : parentId
, name : name
, date : dat
e
, hyperdata: hyperdata'
}
pure $ NodePoly { id
, dat
e
, hyperdata: hyperdata'
, name
, parentId
, typenam
e
, userId
}
newtype HyperdataList = HyperdataList { preferences :: String }
...
...
src/Gargantext/Utils/CacheAPI.js
View file @
b5dbd5a3
...
...
@@ -9,7 +9,7 @@ exports._makeRequest = function() {
exports
.
_openCache
=
function
(
cacheName
)
{
return
function
()
{
return
caches
.
open
(
cacheName
);
return
window
.
caches
.
open
(
cacheName
);
}
}
...
...
src/Gargantext/Version.purs
View file @
b5dbd5a3
...
...
@@ -41,7 +41,7 @@ versionCpt = R.hooksComponent "G.C.A.version" cpt
pure $ case version == versionBack of
true -> H.a { className: "fa fa-check-circle-o"
,
"text-decoration"
: "none"
,
textDecoration
: "none"
, title: "Versions match: frontend ("
<> version
<> "), backend ("
...
...
@@ -49,7 +49,7 @@ versionCpt = R.hooksComponent "G.C.A.version" cpt
<> ")"
} []
false -> H.a { className: "fa fa-exclamation-triangle"
,
"text-decoration"
: "none"
,
textDecoration
: "none"
, title: "Versions mismatch: frontend ("
<> version
<> "), backend ("
...
...
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