Skip to content

Commit

Permalink
fix(module: assets): fix logo name (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisherspy committed Mar 4, 2019
1 parent 8d6b922 commit 475eb14
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/accordion/demo/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class DemoAccordionBasicComponent implements OnInit {
ngOnInit() {
this.accordions = [
{ title: this.title1, child: ['content 1', 'content 1', 'content 1'] },
{ title: `<img src="/assets/img/icon.svg" style="width:36px"/>`, child: ['content 2', 'content 2', 'content 2'], inactive: false },
{ title: `<img src="/assets/img/logo.svg" style="width:36px"/>`, child: ['content 2', 'content 2', 'content 2'], inactive: false },
{ title: 'Title 3', child: ['content 3', 'content 3', 'content 3'], inactive: true }
];
}
Expand Down
4 changes: 2 additions & 2 deletions components/grid/demo/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import { Component } from '@angular/core';
export class DemoGridBasicComponent {
gridData = [];
data = Array.from(new Array(9)).map((_val, i) => ({
icon: '/assets/img/icon.svg',
icon: '/assets/img/logo.svg',
text: `name${i}`
}));

Expand All @@ -65,7 +65,7 @@ export class DemoGridBasicComponent {
}));

dataList = Array.from(new Array(9)).map((_val, i) => ({
icon: `<img src="/assets/img/icon.svg" style="width:36px"/>`,
icon: `<img src="/assets/img/logo.svg" style="width:36px"/>`,
text: `name${i}`
}));

Expand Down
2 changes: 1 addition & 1 deletion components/grid/grid.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class TestGridComponent {
isCarousel = false;

dataList = Array.from(new Array(9)).map((_val, i) => ({
icon: `<img src="/assets/img/icon.svg" style="width:36px"/>`,
icon: `<img src="/assets/img/logo.svg" style="width:36px"/>`,
text: `name${i}`
}));

Expand Down
2 changes: 1 addition & 1 deletion scripts/site/_site/src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start_url": "/",
"icons": [
{
"src": "assets/img/icon.svg",
"src": "assets/img/logo.svg",
"sizes": "72x72 96x96 128x128 144x144 152x152 192x192 384x384 512x512"
}
]
Expand Down

0 comments on commit 475eb14

Please sign in to comment.