Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion govtool/backend/sql/list-proposals.sql
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ WHERE
off_chain_vote_gov_action_data.abstract ILIKE ? OR
off_chain_vote_gov_action_data.motivation ILIKE ? OR
off_chain_vote_gov_action_data.rationale ILIKE ? OR
concat(encode(creator_tx.hash, 'hex'), '#', gov_action_proposal.index) ILIKE ?)
concat(encode(creator_tx.hash, 'hex'), '#', gov_action_proposal.index) = ?)
GROUP BY
gov_action_proposal.id,
creator_tx.hash,
Expand Down
4 changes: 2 additions & 2 deletions govtool/backend/src/VVA/Proposal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ getProposals mSearchTerms = withPool $ \conn -> do
, "%" <> searchParam <> "%"
, "%" <> searchParam <> "%"
, "%" <> searchParam <> "%"
, "%" <> searchParam <> "%"
, searchParam
)
case result of
Left (e :: SomeException) -> do
Expand Down Expand Up @@ -125,4 +125,4 @@ getPreviousEnactedProposal proposalType = withPool $ \conn -> do
liftIO $ putStrLn $ "[DEBUG] Previous enacted proposal details: " ++ show details
Nothing ->
liftIO $ putStrLn "[DEBUG] No previous enacted proposal found"
return proposal
return proposal
8 changes: 4 additions & 4 deletions govtool/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion govtool/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@emotion/styled": "^11.11.0",
"@emurgo/cardano-serialization-lib-asmjs": "^14.1.1",
"@hookform/resolvers": "^3.3.1",
"@intersect.mbo/govtool-outcomes-pillar-ui": "v1.5.1",
"@intersect.mbo/govtool-outcomes-pillar-ui": "v1.5.2",
"@intersect.mbo/intersectmbo.org-icons-set": "^1.0.8",
"@intersect.mbo/pdf-ui": "1.0.9-beta",
"@mui/icons-material": "^5.14.3",
Expand Down