Skip to content

Commit

Permalink
chore: small code improvements (#579)
Browse files Browse the repository at this point in the history
* chore(help): add v to sipi version

* chore(gh): add codeowner

* refactor: clean up code
  • Loading branch information
kilchenmann committed Nov 9, 2021
1 parent c1b0b94 commit d19e353
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit d19e353

Please sign in to comment.