Skip to content

Commit eea3e60

Browse files
authored
Update Main (#293)
* feat, fix(components): apply housekeeping updates (#292) * fix(header): fix toggle * feat(photo-album): remove author - all are me * chore(package): bump version to `1.8.8`
1 parent 437cb08 commit eea3e60

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "analogjs-blog",
3-
"version": "1.8.7",
3+
"version": "1.8.8",
44
"author": "Elanna Grossman <[email protected]>",
55
"license": "MIT",
66
"type": "module",
@@ -111,4 +111,4 @@
111111
"git add"
112112
]
113113
}
114-
}
114+
}

src/app/components/header/header.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export class HeaderComponent implements OnInit {
174174
});
175175

176176
this.theme$.subscribe((theme) =>
177-
this.form.setValue({ isChecked: theme === 'light' }),
177+
this.form.setValue({ isChecked: theme === 'dark' }),
178178
);
179179
}
180180

src/app/components/photo-album/photo-album.component.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ import { PhotosetListItem } from '@models/flickr';
5454
<h2 class="text-white text-xl font-bold text-shadow-sm shadow-black">
5555
{{ photo.title._content }}
5656
</h2>
57-
<div
58-
*ngIf="photo.username"
59-
class="text-white text-xs text-shadow-sm shadow-black"
60-
>
61-
By: {{ photo.username }}
62-
</div>
6357
</div>
6458
</a>
6559
</div>

0 commit comments

Comments
 (0)