Skip to content

Commit

Permalink
Corregido las urls de los templates, de /proyecto a /propuesta
Browse files Browse the repository at this point in the history
  • Loading branch information
guillecro committed Mar 24, 2019
1 parent b3270ac commit 5090d5f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion templates/comment-closed.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const CommentClosed = (props) => {
</Span>
</Item>
<Item style={Style.itemStyle}>
<A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`} textDecoration='none'>
<A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`} textDecoration='none'>
<Box align='center' style={cardStyle}>
<Item>
<Image src={props.document.imageCover} style={cardImgStyle} />
Expand Down
4 changes: 2 additions & 2 deletions templates/comment-contribution.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CommentContribution = (props) => {
<Content name={props.author.name} style={{ width: '100%' }}>
<Item style={Style.itemStyle}>
<Span {...Style.defaultContentStyle}>
El/la diputado/a creó un nueva versión de la propuesta <b>{props.document.title}</b> y destacó su comentario como aporte. Para ver la nueva versión ingrese en <A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
El/la diputado/a creó un nueva versión de la propuesta <b>{props.document.title}</b> y destacó su comentario como aporte. Para ver la nueva versión ingrese en <A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
</Span>
</Item>
<Item style={Style.itemStyle}>
Expand All @@ -23,7 +23,7 @@ const CommentContribution = (props) => {
</Span>
</Item>
<Item style={Style.itemStyle}>
<A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`} textDecoration='none'>
<A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`} textDecoration='none'>
<Box align='center' style={CommentContainerStyle.cardStyle}>
<Item>
<div style={CommentContainerStyle.leftColumn} >
Expand Down
4 changes: 2 additions & 2 deletions templates/comment-liked.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CommentLiked = (props) => {
<Content name={props.author.name} style={{ width: '100%' }}>
<Item style={Style.itemStyle}>
<Span {...Style.defaultContentStyle}>
El/la diputado/a apoyó el comentario que realizó en el proyecto <b>{props.document.title}</b> en <A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
El/la diputado/a apoyó el comentario que realizó en el proyecto <b>{props.document.title}</b> en <A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
</Span>
</Item>
<Item style={Style.itemStyle}>
Expand All @@ -23,7 +23,7 @@ const CommentLiked = (props) => {
</Span>
</Item>
<Item style={Style.itemStyle}>
<A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`} textDecoration='none'>
<A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`} textDecoration='none'>
<Box align='center' style={CommentContainerStyle.cardStyle}>
<Item>
<div style={CommentContainerStyle.leftColumn} >
Expand Down
4 changes: 2 additions & 2 deletions templates/comment-resolved.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CommentRead = (props) => {
<Content name={props.author.name} style={{ width: '100%' }}>
<Item style={Style.itemStyle}>
<Span {...Style.defaultContentStyle}>
El/la diputado/a resolvió su comentario en el proyecto <b>{props.document.title}</b> en <A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
El/la diputado/a resolvió su comentario en el proyecto <b>{props.document.title}</b> en <A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`}>{ORGANIZATION_NAME}</A>
</Span>
</Item>
<Item style={Style.itemStyle}>
Expand All @@ -23,7 +23,7 @@ const CommentRead = (props) => {
</Span>
</Item>
<Item style={Style.itemStyle}>
<A href={`${ORGANIZATION_URL}/proyecto?id=${props.document.id}`} textDecoration='none'>
<A href={`${ORGANIZATION_URL}/propuesta?id=${props.document.id}`} textDecoration='none'>
<Box align='center' style={CommentContainerStyle.cardStyle}>
<Item>
<div style={CommentContainerStyle.leftColumn} >
Expand Down

0 comments on commit 5090d5f

Please sign in to comment.