Skip to content

Commit

Permalink
add engine name to choose model page (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
benfoley committed Oct 17, 2022
1 parent ff6b684 commit da4663b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions elpis/gui/src/components/Transcription/ChooseModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class ChooseModel extends Component {
return (
<Button key={index} onClick={() => this.handleSelectModel(model.name)}>
{model.name}
<span className="engine-name">({model.engine_name})</span>
</Button>
);
});
Expand Down
5 changes: 5 additions & 0 deletions elpis/gui/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -347,3 +347,8 @@ label.pad-right,
.ui.toggle.checkbox .box:before, .ui.toggle.checkbox label:before {
background-color: grey;
}

.engine-name {
font-style: italic;
margin-left: 0.5em;
}

0 comments on commit da4663b

Please sign in to comment.