Skip to content

Commit d212523

Browse files
committed
fixed paths to cdn
1 parent ddbf29f commit d212523

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

code-gen-library/WebGridHeaderRowSelectorTemplate/Blazor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
igRegisterScript("WebGridHeaderRowSelectorTemplate", (ctx) => {
33
var html = window.igTemplating.html;
44
return html`<div style="width: 70px;height: 60px;display: flex;">
5-
<img src="https://dl.infragistics.com/x/img/browser/ig.png" class="header-image">
5+
<img src="https://dl.infragistics.com/x/img/browsers/ig.png" class="header-image">
66
</div>`;
77
}, false);
88
//end template

code-gen-library/WebGridHeaderRowSelectorTemplate/React.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class WebGridHeaderRowSelectorTemplate {
88
public webGridHeaderRowSelectorTemplate = (e: {dataContext: IgrHeadSelectorTemplateContext }) => {
99
return (
1010
<div style={{width: '70px', height: '60px', display: 'flex'}}>
11-
<img src="https://dl.infragistics.com/x/img/browser/ig.png" className="header-image"/>
11+
<img src="https://dl.infragistics.com/x/img/browsers/ig.png" className="header-image"/>
1212
</div>
1313
);
1414
}

code-gen-library/WebGridHeaderRowSelectorTemplate/WebComponents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class WebGridHeaderRowSelectorTemplate {
88
//begin content
99
public webGridHeaderRowSelectorTemplate = (ctx: any) => {
1010
return html`<div style="width: 70px;height: 60px;display: flex;">
11-
<img src="https://dl.infragistics.com/x/img/browser/ig.png" class="header-image">
11+
<img src="https://dl.infragistics.com/x/img/browsers/ig.png" class="header-image">
1212
</div>`;
1313
};
1414
//end content

0 commit comments

Comments
 (0)