mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-24 23:32:19 +10:00
Show experience position with role progression (#3116)
This commit is contained in:
@@ -415,7 +415,7 @@ const ExperienceSection = ({ sectionId = "experience", sectionData }: ItemSectio
|
||||
{hasSplitRowText(headerLocation) && <Text style={composeStyles(alignEndStyle)}>{headerLocation}</Text>}
|
||||
</View>
|
||||
|
||||
{item.roles.length === 0 && (hasPosition || hasSplitRowText(headerPeriod)) && (
|
||||
{(hasPosition || hasSplitRowText(headerPeriod)) && (
|
||||
<View style={composeStyles(splitRowStyle)}>
|
||||
{hasPosition && <Text>{item.position}</Text>}
|
||||
{hasSplitRowText(headerPeriod) && <Text style={composeStyles(alignEndStyle)}>{headerPeriod}</Text>}
|
||||
@@ -428,8 +428,6 @@ const ExperienceSection = ({ sectionId = "experience", sectionData }: ItemSectio
|
||||
<SectionItem key={item.id}>
|
||||
<SectionItemHeader>{inlineItemHeader ? renderInlineHeader() : renderSplitHeader()}</SectionItemHeader>
|
||||
|
||||
{item.roles.length > 0 && <Text>{item.period}</Text>}
|
||||
|
||||
{item.roles.map((role) => (
|
||||
<View key={role.id}>
|
||||
<View style={composeStyles(splitRowStyle)}>
|
||||
|
||||
Reference in New Issue
Block a user