Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Commit 1dfe303

Browse files
committed
Add css to flavor label
1 parent 0476b34 commit 1dfe303

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sass/_components.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55

66
@import './components/CancelAcceptButtons/cancel-accept-buttons';
7+
@import './components/Flavor/flavor';
78
@import './components/Form/dropdown';
89
@import './components/Form/form-group';
910
@import './components/Form/list-form-factory';

src/components/Details/Flavor/Flavor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class Flavor extends React.Component {
7676

7777
return (
7878
<Fragment>
79-
{choices.length === 1 && flavor === CUSTOM_FLAVOR && editing ? <div>{CUSTOM_FLAVOR}</div> : ''}
79+
{choices.length === 1 && flavor === CUSTOM_FLAVOR && editing ? <div class="kubevirt-flavor__label">{CUSTOM_FLAVOR}</div> : ''}
8080
<InlineEdit
8181
formFields={formFields}
8282
editing={editing}

0 commit comments

Comments
 (0)