Skip to content
Snippets Groups Projects
Commit d232cc80 authored by Hartung, Michael's avatar Hartung, Michael
Browse files

short too long uniprot IDs

parent 7cbcf550
No related branches found
No related tags found
No related merge requests found
......@@ -448,7 +448,7 @@
<td *ngIf="drugstoneConfig.config.identifier !== 'symbol'">
<p>{{ p.data.symbol }}</p>
</td>
<td *ngIf="drugstoneConfig.config.identifier !== 'uniprot'">
<td *ngIf="drugstoneConfig.config.identifier !== 'uniprot'" class="uniprot" title="{{p.data.uniprotAc}}">
<p>{{ p.data.uniprotAc }}</p>
</td>
<td>
......
......@@ -109,3 +109,10 @@
.task-list-container {
padding: 0.5rem !important;
}
.uniprot p {
max-width: 50px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
\ No newline at end of file
......@@ -20,7 +20,6 @@ export class GroupSelectionComponent implements OnInit {
@Output() selectGroupEmitter: EventEmitter<NodeGroup> = new EventEmitter();
@Input() set nodeGroups(value: { string: NodeGroup }) {
this._nodeGroupsList = Object.values(value).filter(nodeGroup => !this.unselecableGroups.includes(nodeGroup.groupName));
console.log(this._nodeGroupsList)
}
public selectedGroup = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment