Skip to content

Commit f1573c5

Browse files
committed
fixed /img/avatars/
1 parent 977f30e commit f1573c5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

samples/grids/data-grid/performance/src/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,14 @@ export default class DataGridPerformance extends React.Component<any, any> {
241241
}
242242

243243
public TestTemplateContent = (props: IIgrCellTemplateProps) => {
244-
let tmpl = props.dataContext as IgrTemplateCellInfo;
245-
let font = tmpl.font;
244+
let template = props.dataContext as IgrTemplateCellInfo;
245+
let font = template.font;
246246
return (
247247
<div style={{
248-
textAlign: tmpl.resolvedTextAlign,
248+
textAlign: template.resolvedTextAlign,
249249
font: font,
250-
opacity: tmpl.resolvedContentOpacity }}>
251-
<label>{tmpl.value}</label>
250+
opacity: template.resolvedContentOpacity }}>
251+
<label>{template.value}</label>
252252
</div>
253253
);
254254
}

samples/inputs/tooltip/advanced/src/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default class TooltipAdvanced extends React.Component<any, any> {
137137
<div className="avatarWrapper" slot="start">
138138
<IgrAvatar
139139
id="avatar"
140-
src="https://dl.infragistics.com/x/img/avatar/10.jpg"
140+
src="https://dl.infragistics.com/x/img/avatars/10.jpg"
141141
shape="circle"
142142
></IgrAvatar>
143143
<IgrBadge>
@@ -158,7 +158,7 @@ export default class TooltipAdvanced extends React.Component<any, any> {
158158
<div className="avatarWrapper">
159159
<IgrAvatar
160160
id="avatar"
161-
src="https://dl.infragistics.com/x/img/avatar/10.jpg"
161+
src="https://dl.infragistics.com/x/img/avatars/10.jpg"
162162
shape="circle"
163163
></IgrAvatar>
164164
<IgrBadge>
@@ -181,7 +181,7 @@ export default class TooltipAdvanced extends React.Component<any, any> {
181181
<div className="avatarWrapper" slot="start">
182182
<IgrAvatar
183183
id="avatar"
184-
src="https://dl.infragistics.com/x/img/avatar/5.jpg"
184+
src="https://dl.infragistics.com/x/img/avatars/5.jpg"
185185
shape="circle"
186186
></IgrAvatar>
187187
<IgrBadge>

samples/inputs/tooltip/overview/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class TooltipOverview extends React.Component<any, any> {
1313
return (
1414
<div className="container sample">
1515
<IgrAvatar id="avatar" shape="circle"
16-
src="https://dl.infragistics.com/x/img/avatar/10.jpg"
16+
src="https://dl.infragistics.com/x/img/avatars/10.jpg"
1717
></IgrAvatar>
1818
<IgrTooltip placement="bottom-start" anchor="avatar">
1919
Her name is Madelyn James

samples/inputs/tooltip/styling/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default class TooltipStyling extends React.Component<any, any> {
1414
return (
1515
<div className="container sample">
1616
<IgrAvatar id="avatar" shape="circle"
17-
src="https://dl.infragistics.com/x/img/avatar/10.jpg"
17+
src="https://dl.infragistics.com/x/img/avatars/10.jpg"
1818
></IgrAvatar>
1919
<IgrTooltip placement="bottom-start" anchor="avatar" withArrow={true}>
2020
Her name is Madelyn James

0 commit comments

Comments
 (0)