Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('db-brand', () => {
expect(page.root).toEqualHtml(`
<db-brand alt="Deutsche Bahn Logo" href="#" src="./images/db_logo.svg">
<div class="cmp-brand">
<a class="undefined" href="#">
<a href="#">
<img alt="Deutsche Bahn Logo" class="elm-image is-logo" src="./images/db_logo.svg">
</a>
<span class="is-site-name"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,3 @@

/* TODO: Should this be needed as dependency? Ask Maximilian */
@import 'image';

.hide-link-style {
text-decoration: none;
color: inherit;
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export class DbBrand {
return (
<div class="cmp-brand">
<a
class={`${this.siteNameLink && 'hide-link-style'}`}
href={this.anchorRef}
title={this.anchorTitle}
rel={this.anchorRelation}
Expand Down