Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: small code improvements #579

Merged
merged 3 commits into from Nov 9, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1 @@
* @kilchenmann
Expand Up @@ -74,8 +74,8 @@ $warn: rgb(244, 67, 54);
}

@keyframes spinner-keyframes {
0% { transform: rotate(0deg); transform: rotate(0deg); }
100% { transform: rotate(360deg); transform: rotate(360deg); }
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

}
2 changes: 1 addition & 1 deletion src/app/main/help/help.component.ts
Expand Up @@ -106,7 +106,7 @@ export class HelpComponent implements OnInit {
this.tools[1].url += this.dspVersion.webapi;

// set dsp-sipi version
this.tools[2].title += this.dspVersion.sipi;
this.tools[2].title += ' v' + this.dspVersion.sipi;
this.tools[2].url += this.dspVersion.sipi;
},
(error: ApiResponseError) => {
Expand Down
Expand Up @@ -70,7 +70,7 @@ <h3 class="label mat-title">
<div class="infobar mat-caption" *ngIf="project && user">
<p *ngIf="displayProjectInfo">This resource belongs to the project
<span class="project link" (click)="openProject(project)" (mouseover)="previewProject(project)">
<b>{{project?.shortname}}</b>
<strong>{{project?.shortname}}</strong>
<mat-icon inline>open_in_new</mat-icon>
</span>
</p>
Expand Down
Expand Up @@ -35,7 +35,7 @@
</span>

<span *ngIf="errorMessage">
<p class="errorIfNoElement"><b>{{errorMessage}}</b></p>
<p class="errorIfNoElement"><strong>{{errorMessage}}</strong></p>
</span>

<!-- action buttons: cancel and next -->
Expand Down
Expand Up @@ -252,7 +252,6 @@
}

.app-search-menu {
height: auto;
box-shadow: none;
background-color: transparent;
position: absolute;
Expand Down