-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mercado Pago
committed
Dec 16, 2024
1 parent
bb1f5cb
commit 70a99f3
Showing
124 changed files
with
12,625 additions
and
1,830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
repos: | ||
# Websec hook is MANDATORY, DO NOT comment it. | ||
- repo: [email protected]-emu:melisource/fury_websec-git-hooks | ||
- repo: [email protected]:melisource/fury_websec-git-hooks | ||
rev: v2.0.0 | ||
hooks: | ||
- id: pre_commit_hook | ||
stages: [commit] | ||
stages: [ commit ] | ||
- id: post_commit_hook | ||
stages: [post-commit] | ||
stages: [ post-commit ] | ||
|
||
- repo: [email protected]-emu:melisource/fury_datasec-git-hooks.git | ||
rev: 1.2.0 | ||
- repo: [email protected]:melisource/fury_datasec-git-hooks | ||
rev: 1.2.1 | ||
hooks: | ||
- id: pre_commit_hook | ||
stages: [commit] | ||
verbose: true | ||
stages: [ pre-commit ] | ||
- id: post_commit_hook | ||
stages: [post-commit] | ||
stages: [ post-commit ] | ||
|
||
- repo: local | ||
hooks: | ||
- id: add-index | ||
name: Add index.php | ||
stages: [pre-commit] | ||
stages: [ pre-commit ] | ||
language: script | ||
entry: ./bin/add-index.sh | ||
entry: ./bin/add-index.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,10 @@ | ||
const RowImageSelect = ({text, imgSrc}) => { | ||
return ( | ||
<div style={ | ||
{ | ||
height: "18px", | ||
display: "flex", | ||
justifyContent: "space-between", | ||
alignContent: "center", | ||
alignItems: "center", | ||
flexDirection: "row" | ||
} | ||
}> | ||
<img | ||
style={ | ||
{ | ||
marginRight: "8px", | ||
height: "25px", | ||
width: "30px", | ||
padding: 0 | ||
} | ||
} | ||
src={imgSrc} | ||
/> | ||
<p style={ | ||
{ | ||
fontFamily: '"Proxima Nova", -apple-system, "Helvetica Neue", Helvetica, "Roboto", Arial, sans-serif', | ||
fontSize: "18px", | ||
padding: 0 | ||
} | ||
}>{text}</p> | ||
</div> | ||
); | ||
const RowImageSelect = ({ text, imgSrc, id }) => { | ||
return ( | ||
<div id={id} className="row-image-select"> | ||
<img src={imgSrc} /> | ||
<p>{text}</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default RowImageSelect; | ||
export default RowImageSelect; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.