-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replace IconComponent with icon partials #874
Merged
Merged
Changes from 16 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2bd6f5c
product-standard HitchhikerCTA-icon
oshi97 0b7f0dd
HitchhikerCTA-icon when the div tags are on the same line
oshi97 8dc40be
show more show less chevron icons
oshi97 db613f3
HitchhikerCTA-icon v3
oshi97 ea3c6b3
accordion card icon
oshi97 b12de24
HitchhikerCTA-icon v4
oshi97 25ca8fd
HitchhikerCTA-icon v5
oshi97 e600d7a
HitchhikerCTA-icon v6
oshi97 7a9c958
universal section templates
oshi97 5b76d89
grid chevron
oshi97 9ccab77
directanswer titleIconWrapper
oshi97 d6001b3
da card thumb up icon
oshi97 6d43fb0
da card thumb down icon
oshi97 9e7cf92
doc search da card thumb icons
oshi97 1a68ab0
other one-off icon usages
oshi97 34b9b25
point to feature/develop-i18n
oshi97 33589d9
param spacing
oshi97 a4fc570
bakedInIcon -> builtInIcon
oshi97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,10 +76,10 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'></div> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
{{/if}} | ||
<div class='HitchhikerCTA-iconLabel'> | ||
|
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 |
---|---|---|
|
@@ -73,13 +73,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
oshi97 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -95,10 +97,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
tmeyer2115 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -7,10 +7,8 @@ | |
<h3 class="HitchhikerFaqAccordion-title"> | ||
{{{card.title}}} | ||
</h3> | ||
<div class="HitchhikerFaqAccordion-icon js-HitchhikerFaqAccordion-icon{{#if card.isExpanded}} HitchhikerFaqAccordion-icon--expanded{{/if}}" | ||
data-component="IconComponent" | ||
data-opts='{"iconName": "chevron"}' | ||
data-prop="icon"> | ||
<div class="HitchhikerFaqAccordion-icon js-HitchhikerFaqAccordion-icon{{#if card.isExpanded}} HitchhikerFaqAccordion-icon--expanded{{/if}}"> | ||
{{> icons/bakedInIcon iconName='chevron' }} | ||
</div> | ||
</button> | ||
<div class="HitchhikerFaqAccordion-content js-HitchhikerFaqAccordion-content" | ||
|
@@ -61,13 +59,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -83,10 +83,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -102,13 +102,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -172,10 +174,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{iconUrl}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -65,13 +65,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -96,10 +98,10 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'></div> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
{{/if}} | ||
<div class='HitchhikerCTA-iconLabel'> | ||
|
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 |
---|---|---|
|
@@ -90,10 +90,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
@@ -185,13 +186,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
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 |
---|---|---|
|
@@ -92,13 +92,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -116,10 +118,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -73,13 +73,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -95,10 +97,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
tmeyer2115 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -7,10 +7,8 @@ | |
<h3 class="HitchhikerFaqAccordion-title"> | ||
{{{card.title}}} | ||
</h3> | ||
<div class="HitchhikerFaqAccordion-icon js-HitchhikerFaqAccordion-icon{{#if card.isExpanded}} HitchhikerFaqAccordion-icon--expanded{{/if}}" | ||
data-component="IconComponent" | ||
data-opts='{"iconName": "chevron"}' | ||
data-prop="icon"> | ||
<div class="HitchhikerFaqAccordion-icon js-HitchhikerFaqAccordion-icon{{#if card.isExpanded}} HitchhikerFaqAccordion-icon--expanded{{/if}}"> | ||
{{> icons/bakedInIcon iconName='chevron' }} | ||
</div> | ||
</button> | ||
<div class="HitchhikerFaqAccordion-content js-HitchhikerFaqAccordion-content" | ||
|
@@ -61,13 +59,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -83,10 +83,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{#if iconUrl}}{{#unless (isNonRelativeUrl iconUrl)}}{{@root.relativePath}}/{{/unless}}{{iconUrl}}{{/if}}", | ||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
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 |
---|---|---|
|
@@ -102,13 +102,15 @@ | |
{{#if showExcessDetailsToggle}} | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle"> | ||
{{card.showMoreDetails.showMoreText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseDown" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseDown' }} | ||
</span> | ||
</button> | ||
<button class="HitchhikerCard-detailsToggle js-HitchhikerCard-detailsToggle js-hidden"> | ||
{{card.showMoreDetails.showLessText}} | ||
<span data-component="IconComponent" | ||
data-opts='{ "iconName": "chevron", "classNames": "Icon--sm Icon-collapseUp" }'></span> | ||
<span> | ||
{{> icons/bakedInIcon iconName='chevron' classNames='Icon--sm Icon--collapseUp' }} | ||
</span> | ||
</button> | ||
{{/if}} | ||
</div> | ||
|
@@ -172,10 +174,11 @@ | |
{{#if ariaLabel}}aria-label="{{ariaLabel}}"{{/if}}> | ||
{{#if (any iconName iconUrl)}} | ||
<div class="HitchhikerCTA-iconWrapper"> | ||
<div class="HitchhikerCTA-icon" data-component="IconComponent" data-opts='{ | ||
"iconUrl": "{{iconUrl}}", | ||
tmeyer2115 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"iconName": "{{iconName}}" | ||
}'> | ||
<div class="HitchhikerCTA-icon"> | ||
{{> icons/iconPartial | ||
iconName=iconName | ||
iconUrl=(relativePathHandler url=iconUrl [email protected]) | ||
}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you know why an extra space is showing up on these diffs? It might not be an issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure I see the extra spaces